Channel3 Logo

LZF logoLZF product data API

Structured LZF product data for developers building search, recommendations, and AI shopping agents.

Agentic commerce demo

Try a LZF-only AI shopping agent

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

Do you work at LZF?

Looking to drive more AI sales? Channel3 can help LZF 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 LZF products.

Find any LZF 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": "LZF products",
  "filters": {
    "brand_ids": [
      "anu1"
    ]
  },
  "limit": 20
}'
from channel3_sdk import Channel3

client = Channel3()

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

const client = new Channel3();

const products = await client.search.perform({
  query: "LZF products",
  filters: {
    brand_ids: ["anu1"],
  },
  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 LZF products

A preview of the products available through the Channel3 LZF product data API.

Lzf Link Pendant Light - Grey Shade / Small / Matte Black Canopy
LZF
Lzf Link Pendant Light - Grey Shade / Small / Matte Black Canopy
$1,190
I-club Slim Suspension Light - Natural Cherry/small: 47.2 In Width/triac Dimmer
LZF
I-club Slim Suspension Light - Natural Cherry/small: 47.2 In Width/triac Dimmer
$2,780
Swirl Pendant Light Natural Cherry Large
LZF
Swirl Pendant Light Natural Cherry Large
$1,970
Kactos Table Lamp - Pale Rose/matte Black
LZF
Kactos Table Lamp - Pale Rose/matte Black
$2,400
Guijarro G5 Wall Sconce - Ivory White/0-10v Dimmer
LZF
Guijarro G5 Wall Sconce - Ivory White/0-10v Dimmer
$1,290
I-line 150 Led Suspension Light - Pale Rose/matte White/triac Dimmer
LZF
I-line 150 Led Suspension Light - Pale Rose/matte White/triac Dimmer
$2,910
Lzf Link Pendant Light Ivory White Large 27.1 In Diameter Matte White
LZF
Lzf Link Pendant Light Ivory White Large 27.1 In Diameter Matte White
$1,970
Swirl Pendant Light - Sea Blue/large: 29.5 In Diameter/matte Black
LZF
Swirl Pendant Light - Sea Blue/large: 29.5 In Diameter/matte Black
$1,970
Gea 42 Sconce - Natural Beech/standard Non-dimming
LZF
Gea 42 Sconce - Natural Beech/standard Non-dimming
$760
Lzf Agatha Bolla Suspension - Sea Blue
LZF
Lzf Agatha Bolla Suspension - Sea Blue
$3,510
Swirl Pendant Light - Orange/small: 21.3 In Diameter/nickel
LZF
Swirl Pendant Light - Orange/small: 21.3 In Diameter/nickel
$1,340
I-club Slim Suspension Light - Red/large
LZF
I-club Slim Suspension Light - Red/large
$3,410
Lens Circular Led Wall Sconce - Natural Beech / Matte Ivory/triac Dimmer
LZF
Lens Circular Led Wall Sconce - Natural Beech / Matte Ivory/triac Dimmer
$1,520
Lzf Dune Linear Suspension
LZF
Lzf Dune Linear Suspension
$4,550
Lens Oval Led Wall Sconce - Grey / Gold/triac Dimmer
LZF
Lens Oval Led Wall Sconce - Grey / Gold/triac Dimmer
$1,970
Kactos Pendant Light - Ivory White/matte Black
LZF
Kactos Pendant Light - Ivory White/matte Black
$1,820
Black Note Triplet Floor Lamp - Ivory White/matte Black/rounded Tube
LZF
Black Note Triplet Floor Lamp - Ivory White/matte Black/rounded Tube
$4,270
I-club Table Lamp
LZF
I-club Table Lamp
$1,720
I-club Slim Suspension Light - Natural Beech/large: 60.2 In Width/0-10v Dimmer
LZF
I-club Slim Suspension Light - Natural Beech/large: 60.2 In Width/0-10v Dimmer
$3,410
Lens Super Oval Led Wall Sconce - Red / Matte Black/triac Dimmer
LZF
Lens Super Oval Led Wall Sconce - Red / Matte Black/triac Dimmer
$2,350
Lzf Thesis Small Floor Lamp
LZF
Lzf Thesis Small Floor Lamp
$4,440
Link Pendant Light
LZF
Link Pendant Light
$1,970
I-club Slim Suspension Light - Red/small: 47.2 In Width/0-10v Dimmer
LZF
I-club Slim Suspension Light - Red/small: 47.2 In Width/0-10v Dimmer
$2,780
Lzf Tiny Led Table Lamp - Dimmable/sea Blue
LZF
Lzf Tiny Led Table Lamp - Dimmable/sea Blue
$690

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": "LZF sample product",
      "brand": {
        "name": "LZF"
      },
      "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 LZF 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 LZF 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