Channel3 Logo

CrazyNeon logoCrazyNeon product data API

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

Agentic commerce demo

Try a CrazyNeon-only AI shopping agent

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

Do you work at CrazyNeon?

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

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

client = Channel3()

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

const client = new Channel3();

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

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

Late Nights Early Mornings Neon Sign - Orange/26.5"(w)x24.5"(h)
CrazyNeon
Late Nights Early Mornings Neon Sign - Orange/26.5"(w)x24.5"(h)
$357
Skull With Scythe Neon Sign - Pink/28"(w)x29.5"(h)
CrazyNeon
Skull With Scythe Neon Sign - Pink/28"(w)x29.5"(h)
$474
Skull With Scythe Neon Sign - Iceblue/36"(w)x38.5"(h)
CrazyNeon
Skull With Scythe Neon Sign - Iceblue/36"(w)x38.5"(h)
$757
High Vibes Neon Sign - Red/40"(w)x26"(h)
CrazyNeon
High Vibes Neon Sign - Red/40"(w)x26"(h)
$597
Campfire Artwork Neon Sign - Blue/16”(w)x20”(h)
CrazyNeon
Campfire Artwork Neon Sign - Blue/16”(w)x20”(h)
$281
Chevy Camaro Headlight Neon Artwork - White/32"(w) X 25"(h)
CrazyNeon
Chevy Camaro Headlight Neon Artwork - White/32"(w) X 25"(h)
$590
New Year Neon Sign - Green/40"(w)x23"(h)
CrazyNeon
New Year Neon Sign - Green/40"(w)x23"(h)
$402
Astronaut Santa Holiday Sock Neon Artwork - Warmwhite/26.5"(w) X 36.5"(h)
CrazyNeon
Astronaut Santa Holiday Sock Neon Artwork - Warmwhite/26.5"(w) X 36.5"(h)
$592
Astronaut Santa Holiday Sock Neon Artwork - Blue/22.5"(w) X 32.5 "(h)
CrazyNeon
Astronaut Santa Holiday Sock Neon Artwork - Blue/22.5"(w) X 32.5 "(h)
$470
Astronaut Santa Holiday Sock Neon Artwork
CrazyNeon
Astronaut Santa Holiday Sock Neon Artwork
$302
Santa Dino Christmas Neon Artwork - Iceblue/16.5"(w) X 18"(h)
CrazyNeon
Santa Dino Christmas Neon Artwork - Iceblue/16.5"(w) X 18"(h)
$278
Cn Led Neon: Do It For The Vine Winery
CrazyNeon
Cn Led Neon: Do It For The Vine Winery
$1,470
Foot Massage Neon Sign - Orange/24"(w)x32"(h)
CrazyNeon
Foot Massage Neon Sign - Orange/24"(w)x32"(h)
$461
Cn Led Neon: Hi!
CrazyNeon
Cn Led Neon: Hi!
$90
Angel And Devil Heart Neon Sign - Orange/36"(w)x27"(h)
CrazyNeon
Angel And Devil Heart Neon Sign - Orange/36"(w)x27"(h)
$424
Red Nose Reindeer Neon Artwork - Purple/26.5"(w) X 38"(h)
CrazyNeon
Red Nose Reindeer Neon Artwork - Purple/26.5"(w) X 38"(h)
$617
Fish Neon Sign - Red/12"(w)x10"(h)
CrazyNeon
Fish Neon Sign - Red/12"(w)x10"(h)
$175
Santa Cap Neon Sign - Red/22”(w)x22”(h)
CrazyNeon
Santa Cap Neon Sign - Red/22”(w)x22”(h)
$304
Happy Birthday With Cupcake Neon Sign
CrazyNeon
Happy Birthday With Cupcake Neon Sign
$1,540
Yellow R8 Headlight Neon Artwork - Yellow/28"(w) X 18"(h)
CrazyNeon
Yellow R8 Headlight Neon Artwork - Yellow/28"(w) X 18"(h)
$392
Vampire Pumpkin Neon Artwork - Green/26"(w) X 20.5"(h)
CrazyNeon
Vampire Pumpkin Neon Artwork - Green/26"(w) X 20.5"(h)
$414
Frankenstein Neon Sign - Pink/42"(w) X 35.5"(h)
CrazyNeon
Frankenstein Neon Sign - Pink/42"(w) X 35.5"(h)
$814
Geometric Maple Leaf Neon Sign - Yellow/32.5"(w) X 38"(h)
CrazyNeon
Geometric Maple Leaf Neon Sign - Yellow/32.5"(w) X 38"(h)
$675
Lipstick Neon Sign - Pink-green/16”(w)x5”(h)
CrazyNeon
Lipstick Neon Sign - Pink-green/16”(w)x5”(h)
$190

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