Channel3 Logo

Jan Kessel logoJan Kessel product data API

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

Agentic commerce demo

Try a Jan Kessel-only AI shopping agent

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

Do you work at Jan Kessel?

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

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

client = Channel3()

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

const client = new Channel3();

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

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

Flowering Soul - Framed Print/fpc-champagne Silver/21 X 28
Jan Kessel
Flowering Soul - Framed Print/fpc-champagne Silver/21 X 28
$350
Wave Explosion - Rolled Print/poster Paper/20 X 15
Jan Kessel
Wave Explosion - Rolled Print/poster Paper/20 X 15
$34
Wave 1 - Framed Print/fpc-classic White/20 X 15
Jan Kessel
Wave 1 - Framed Print/fpc-classic White/20 X 15
$228
Waves 3 - Canvas/classic/12 X 9
Jan Kessel
Waves 3 - Canvas/classic/12 X 9
$60
Tulip Field 2 - Framed Canvas/fc-barnwood/20 X 15
Jan Kessel
Tulip Field 2 - Framed Canvas/fc-barnwood/20 X 15
$170
Cannon Beach - Canvas/classic/20 X 15
Jan Kessel
Cannon Beach - Canvas/classic/20 X 15
$100
Sea Sparkle 1 - Framed Canvas/fc-classic Black/15 X 20
Jan Kessel
Sea Sparkle 1 - Framed Canvas/fc-classic Black/15 X 20
$170
Patagonia 1 - Canvas/classic/20 X 15
Jan Kessel
Patagonia 1 - Canvas/classic/20 X 15
$100
Burst - Framed Print/fpc-birch/21 X 28
Jan Kessel
Burst - Framed Print/fpc-birch/21 X 28
$350
Sunset Waves - Framed Canvas/fc-matte Gold/20 X 15
Jan Kessel
Sunset Waves - Framed Canvas/fc-matte Gold/20 X 15
$170
Water Dance 1 - Framed Print/fpc-classic Black/15 X 20
Jan Kessel
Water Dance 1 - Framed Print/fpc-classic Black/15 X 20
$228
Surf School B&w - Framed Print/fpc-classic White/20 X 15
Jan Kessel
Surf School B&w - Framed Print/fpc-classic White/20 X 15
$228
Lavendar Farm - Framed Print/fpp-black & Champagne/15 X 20
Jan Kessel
Lavendar Farm - Framed Print/fpp-black & Champagne/15 X 20
$340
Nature's Power - Framed Print/fpp-toasted Walnut/20 X 15
Jan Kessel
Nature's Power - Framed Print/fpp-toasted Walnut/20 X 15
$340
Sailing In The Island - Framed Canvas/fc-charcoal Brown/20 X 15
Jan Kessel
Sailing In The Island - Framed Canvas/fc-charcoal Brown/20 X 15
$170
Ocean Beach 3 - Framed Print/fpc-classic Black/20 X 15
Jan Kessel
Ocean Beach 3 - Framed Print/fpc-classic Black/20 X 15
$228
Big Sur Coast 1 - Framed Canvas/fc-barnwood/15 X 20
Jan Kessel
Big Sur Coast 1 - Framed Canvas/fc-barnwood/15 X 20
$170
Fiery Sunrise - Framed Print/fpc-matte Gold/20 X 15
Jan Kessel
Fiery Sunrise - Framed Print/fpc-matte Gold/20 X 15
$228
Pink Sunflower 3 - Framed Canvas/fc-classic Black/12 X 16
Jan Kessel
Pink Sunflower 3 - Framed Canvas/fc-classic Black/12 X 16
$160
Harbor Twilight - Framed Print/fpp-vintage Gold/28 X 21
Jan Kessel
Harbor Twilight - Framed Print/fpp-vintage Gold/28 X 21
$490
Wild Surf - Framed Canvas/fc-classic White/20 X 15
Jan Kessel
Wild Surf - Framed Canvas/fc-classic White/20 X 15
$170
Fall Reflections - Framed Canvas/fc-walnut/16 X 12
Jan Kessel
Fall Reflections - Framed Canvas/fc-walnut/16 X 12
$160
Santa Monica Beach - Framed Print/fpc-warm Gray/28 X 21
Jan Kessel
Santa Monica Beach - Framed Print/fpc-warm Gray/28 X 21
$350
Summer - Framed Canvas/fc-walnut/15 X 20
Jan Kessel
Summer - Framed Canvas/fc-walnut/15 X 20
$170

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