Channel3 Logo

Viz Media logoViz Media product data API

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

Agentic commerce demo

Try a Viz Media-only AI shopping agent

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

Do you work at Viz Media?

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

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

client = Channel3()

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

const client = new Channel3();

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

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

Rwby Volume 1 [blu-ray]
Viz Media
Rwby Volume 1 [blu-ray]
$16
Blood Lad: Complete Series [dvd]
Viz Media
Blood Lad: Complete Series [dvd]
$25
Vampire Knight: Complete Collection (dvd Widescreen) [dvd]
Viz Media
Vampire Knight: Complete Collection (dvd Widescreen) [dvd]
$21
Inuyasha Season 6 (dvd Set) [dvd]
Viz Media
Inuyasha Season 6 (dvd Set) [dvd]
$15
Pokémon Adventures (ruby And Sapphire), Vol. 16
Viz Media
Pokémon Adventures (ruby And Sapphire), Vol. 16
£9
Rwby Volume 8 [blu-ray]
Viz Media
Rwby Volume 8 [blu-ray]
$25
Boruto : Naruto Next Generations Set 4 [dvd]
Viz Media
Boruto : Naruto Next Generations Set 4 [dvd]
$28
Pokémon: Advanced - The Complete Collection (box Set) [dvd]
Viz Media
Pokémon: Advanced - The Complete Collection (box Set) [dvd]
$33
Yashahime: Princess Half-demon - Season 1 Part 2 [blu-ray]
Viz Media
Yashahime: Princess Half-demon - Season 1 Part 2 [blu-ray]
$26
Nura: Rise Of The Yokai Clan Set 1 [dvd]
Viz Media
Nura: Rise Of The Yokai Clan Set 1 [dvd]
$25
Pokemon Elements Vol. 8 [dvd]
Viz Media
Pokemon Elements Vol. 8 [dvd]
$10
Inuyasha: The Final Act - The Complete Series (box Set) [blu-ray]
Viz Media
Inuyasha: The Final Act - The Complete Series (box Set) [blu-ray]
$30
Pokémon The Movie: Secrets Of The Jungle [blu-ray]
Viz Media
Pokémon The Movie: Secrets Of The Jungle [blu-ray]
$16
Boruto: Naruto Next Generations - Shadow Of The Curse Mark [dvd]
Viz Media
Boruto: Naruto Next Generations - Shadow Of The Curse Mark [dvd]
$26
Pokemon The Movie: The Power Of Us [blu-ray]
Viz Media
Pokemon The Movie: The Power Of Us [blu-ray]
$12
Accel World: Part 2 [dvd]
Viz Media
Accel World: Part 2 [dvd]
$25
Last, The - Naruto The Movie [dvd]
Viz Media
Last, The - Naruto The Movie [dvd]
$12
Ranma 1/2 - Tv Series Set 2 Standard Edition [blu-ray]
Viz Media
Ranma 1/2 - Tv Series Set 2 Standard Edition [blu-ray]
$42
Thus Spoke Kishibe Rohan [blu-ray]
Viz Media
Thus Spoke Kishibe Rohan [blu-ray]
$20
Pokémon: Battle Frontier - The Complete Collection (box Set) [dvd]
Viz Media
Pokémon: Battle Frontier - The Complete Collection (box Set) [dvd]
$26
Castlevania Nocturne: Season 2 [blu-ray]
Viz Media
Castlevania Nocturne: Season 2 [blu-ray]
$30
Pokémon - The First Movie/pokemon - The Movie 2000/pokémon 3 (blu-ray Triple Feature) [blu-ray]
Viz Media
Pokémon - The First Movie/pokemon - The Movie 2000/pokémon 3 (blu-ray Triple Feature) [blu-ray]
$14
Pokemon The Series : Sun And Moon - Ultra Adventures Complete Collection (blu-ray Set) [blu-ray]
Viz Media
Pokemon The Series : Sun And Moon - Ultra Adventures Complete Collection (blu-ray Set) [blu-ray]
$32
Jojo’s Bizarre Adventure Set 2: Stardust Crusaders [blu-ray]
Viz Media
Jojo’s Bizarre Adventure Set 2: Stardust Crusaders [blu-ray]
$31

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