Channel3 Logo

West & Willow logoWest & Willow product data API

Structured West & Willow product data for developers building search, recommendations, and AI shopping agents.

Agentic commerce demo

Try a West & Willow-only AI shopping agent

This demo uses a constant West & Willow filter and tells the assistant it represents West & Willow only. Developers can use the same pattern to build brand-scoped shopping agents, product search, and recommendation flows.

Do you work at West & Willow?

Looking to drive more AI sales? Channel3 can help West & Willow surface more accurately and frequently on AI shopping platforms. No technical work required on your end. Most teams get set up in less than 10 minutes and see results same week.

Drive more AI sales
C3

Hello! I'm an AI shopping assistant powered by the Channel3 API, and I'm scoped to West & Willow products.

Find any West & Willow product with one easy endpoint

Start with 1,000 free searches every month.

curl https://api.trychannel3.com/v1/search \
  -H "x-api-key: $CHANNEL3_API_KEY" \
  -H "content-type: application/json" \
  -d '{
  "query": "West & Willow products",
  "filters": {
    "brand_ids": [
      "SgfJ"
    ]
  },
  "limit": 20
}'
from channel3_sdk import Channel3

client = Channel3()

products = client.search.perform(
    query="West & Willow products",
    filters={"brand_ids": ["SgfJ"]},
    limit=20,
)
import Channel3 from "@channel3/sdk";

const client = new Channel3();

const products = await client.search.perform({
  query: "West & Willow products",
  filters: {
    brand_ids: ["SgfJ"],
  },
  limit: 20,
});

What the product data includes

Normalized product titles

Clean, comparable titles across merchants and storefronts.

Brand and categories

Stable identifiers for filtering, deduplication, and analytics.

Images and product metadata

Hero images, product IDs, category signals, and merchant context.

Live prices and availability

Current offer data so agents do not recommend stale products.

Merchant URLs

Direct product links from retailers and marketplaces.

Affiliate-ready offers

Monetizable links and commission-aware offer selection where available.

Sample West & Willow products

A preview of the products available through the Channel3 West & Willow product data API.

Custom Three Pet Line Drawing Portrait - Navy/24"x18"/white
West & Willow
Custom Three Pet Line Drawing Portrait - Navy/24"x18"/white
$231
Be The Person Your Dog Thinks You Are - Charcoal Gray/walnut/8x10
West & Willow
Be The Person Your Dog Thinks You Are - Charcoal Gray/walnut/8x10
$55
King & Queen Pet Portrait Phone Cases - Iphone/iphone 14 Plus
West & Willow
King & Queen Pet Portrait Phone Cases - Iphone/iphone 14 Plus
$55
Proper Lady Pet Portrait Phone Cases - Iphone/iphone 11 Pro Max
West & Willow
Proper Lady Pet Portrait Phone Cases - Iphone/iphone 11 Pro Max
$55
Custom Two Pet Portrait - Shiplap/16"x12"/walnut
West & Willow
Custom Two Pet Portrait - Shiplap/16"x12"/walnut
$143
Custom Line Style Pet Portrait Phone Cases - White/samsung/galaxy S10
West & Willow
Custom Line Style Pet Portrait Phone Cases - White/samsung/galaxy S10
$55
Custom Memorial Pet Portrait - Soft White/12"x16"/walnut
West & Willow
Custom Memorial Pet Portrait - Soft White/12"x16"/walnut
$115
Custom One Pet Line Drawing Portrait - Navy/18"x24"/poster-only
West & Willow
Custom One Pet Line Drawing Portrait - Navy/18"x24"/poster-only
$68
Princess Pet Portrait Phone Cases - Iphone/iphone 12
West & Willow
Princess Pet Portrait Phone Cases - Iphone/iphone 12
$55
Custom One Pet Line Drawing Portrait - Terracotta/8"x10"/poster-only
West & Willow
Custom One Pet Line Drawing Portrait - Terracotta/8"x10"/poster-only
$46
Custom Horse Portrait - Dusty Pink Background/poster-only/8"x10"
West & Willow
Custom Horse Portrait - Dusty Pink Background/poster-only/8"x10"
$57
Custom Two Pet Portrait - Charcoal Gray/24"x18"/walnut
West & Willow
Custom Two Pet Portrait - Charcoal Gray/24"x18"/walnut
$187
Custom Four Pet Portrait - Dusty Pink/16"x12"/poster-only
West & Willow
Custom Four Pet Portrait - Dusty Pink/16"x12"/poster-only
$110
Custom Desktop Three Pet Portrait - Sage/10"x8"/birch
West & Willow
Custom Desktop Three Pet Portrait - Sage/10"x8"/birch
$100
Princess Pet Portrait Phone Cases - Iphone/iphone 8 Plus
West & Willow
Princess Pet Portrait Phone Cases - Iphone/iphone 8 Plus
$55
Custom Four Pet Portrait - Charcoal Gray/16"x12"/walnut
West & Willow
Custom Four Pet Portrait - Charcoal Gray/16"x12"/walnut
$176
Custom Desktop Two Pet Portrait - Soft White/7"x5"/birch
West & Willow
Custom Desktop Two Pet Portrait - Soft White/7"x5"/birch
$60
You Me & The Dog Quote Sign - Soft White/white/12x16
West & Willow
You Me & The Dog Quote Sign - Soft White/white/12x16
$70
Personalized Pet Portrait Mug - 11 Oz/include Name
West & Willow
Personalized Pet Portrait Mug - 11 Oz/include Name
$40
Dog Person Embroidered Trucker Hat - Navy
West & Willow
Dog Person Embroidered Trucker Hat - Navy
$35
Custom Two Pet Line Drawing Portrait - Navy/16"x12"/birch
West & Willow
Custom Two Pet Line Drawing Portrait - Navy/16"x12"/birch
$154
Custom Desktop One Pet Portrait - Charcoal Gray/5"x7"/black
West & Willow
Custom Desktop One Pet Portrait - Charcoal Gray/5"x7"/black
$48
Custom Memorial Pet Portrait - Dusty Pink/8"x10"/black
West & Willow
Custom Memorial Pet Portrait - Dusty Pink/8"x10"/black
$85
Custom Embroidered Pet Trucker Hat - Black/full Color
West & Willow
Custom Embroidered Pet Trucker Hat - Black/full Color
$75

A structured response for apps and agents

Results are ready for search interfaces, ranking pipelines, product cards, and AI agent tool calls.

{
  "products": [
    {
      "id": "prod_01H...",
      "title": "West & Willow sample product",
      "brand": {
        "name": "West & Willow"
      },
      "category_ids": [
        "xoN"
      ],
      "images": [
        {
          "url": "https://..."
        }
      ],
      "offers": [
        {
          "merchant_domain": "example.com",
          "price": 128,
          "currency": "USD",
          "availability": "InStock",
          "url": "https://..."
        }
      ]
    }
  ],
  "next_page_token": "eyJwYWdlIjoyfQ..."
}

Common use cases

AI shopping agents

Let users ask for products naturally, then return structured candidates your agent can rank and explain.

Affiliate search

Build product discovery experiences with merchant URLs and affiliate-aware offer data.

Marketplace search

Power fast, filterable product search without maintaining retailer-specific scraping pipelines.

Catalog enrichment

Map sparse product records to normalized brands, categories, images, and live merchant offers.

Frequently asked questions

How do I find West & Willow product data?

Use the Channel3 search endpoint with a brand filter. The response includes normalized products, images, prices, availability, and merchant URLs.

Can I use this data in an AI shopping agent?

Yes. Channel3 is designed for product discovery workflows where an app or agent needs structured product results from many merchants.

Do results include price and stock?

Product offers include price, currency, availability, merchant domain, and product URLs when those fields are available.

Can I monetize product links?

Channel3 returns merchant URLs and can use affiliate-ready offer selection where commission data is available.

Explore product data categories

Browse broader product data APIs related to brand-scoped product search and AI shopping agent workflows.

More brand product data APIs

Compare this brand feed with other large brand catalogs available through Channel3.

Build with West & Willow product data

Start with 1,000 free searches every month. No credit card required.

Every product on the internet, in one API.

Get paid to build the future of shopping.

channel 1

In-store

1
channel 2

Online

2
channel 3

Agentic Commerce

3