Channel3 Logo

UMURO logoUMURO product data API

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

Agentic commerce demo

Try a UMURO-only AI shopping agent

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

Do you work at UMURO?

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

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

client = Channel3()

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

const client = new Channel3();

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

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

2024-2025 Ipswich Town Third Shirt
UMURO
2024-2025 Ipswich Town Third Shirt
$114
1999-01 England Umbro Away Shirt M
UMURO
1999-01 England Umbro Away Shirt M
$110
1998-00 Chelsea Umbro Third Shirt L
UMURO
1998-00 Chelsea Umbro Third Shirt L
$175
1999-00 Manchester United Umbro Third Shirt M.boys
UMURO
1999-00 Manchester United Umbro Third Shirt M.boys
$40
1994-95 Real Betis Umbro Home Shorts
UMURO
1994-95 Real Betis Umbro Home Shorts
$75
2006-07 Everton Umbro Home Shirt Xl
UMURO
2006-07 Everton Umbro Home Shirt Xl
$40
2021-22 Shrewsbury Umbro Home Shirt L
UMURO
2021-22 Shrewsbury Umbro Home Shirt L
$40
2008-10 Ireland Umbro Home Shirt Xl.boys
UMURO
2008-10 Ireland Umbro Home Shirt Xl.boys
$15
2024-25 West Ham Umbro Third Shirt *bnib*
UMURO
2024-25 West Ham Umbro Third Shirt *bnib*
$40
2024-2025 West Ham Away Shirt (wan Bissaka 29)
UMURO
2024-2025 West Ham Away Shirt (wan Bissaka 29)
$114
Umbro Gradient Track Jacket Fw25 Pink Su26205 M
Supreme
Umbro Gradient Track Jacket Fw25 Pink Su26205 M
$458
1998-99 Manchester United Umbro Training Shirt Xl
UMURO
1998-99 Manchester United Umbro Training Shirt Xl
$80
2005-06 Chelsea Umbro Away Shirt Xl.boys
UMURO
2005-06 Chelsea Umbro Away Shirt Xl.boys
$45
1985-88 Scotland Umbro Home Shirt *bnib* L
UMURO
1985-88 Scotland Umbro Home Shirt *bnib* L
$198
2008-09 Glentoran Umbro Home Shirt Xl.boys
UMURO
2008-09 Glentoran Umbro Home Shirt Xl.boys
$25
1991-94 Scotland Umbro Home Shirt L
UMURO
1991-94 Scotland Umbro Home Shirt L
$150
Umbro Bumpy Black
UMURO
Umbro Bumpy Black
$140
1999-00 Everton Umbro Home Shirt *w/tags* L
UMURO
1999-00 Everton Umbro Home Shirt *w/tags* L
$175
1998-00 Scotland Umbro Home Shorts *mint* M
UMURO
1998-00 Scotland Umbro Home Shorts *mint* M
$75
2004-06 England Umbro Away Shirt *mint* Xxxl
UMURO
2004-06 England Umbro Away Shirt *mint* Xxxl
$60
England 2010-11 Away Shirt (xl) (excellent)
UMURO
England 2010-11 Away Shirt (xl) (excellent)
$60
1998-99 Manchester United Umbro Third Shirt Yorke #19 L
UMURO
1998-99 Manchester United Umbro Third Shirt Yorke #19 L
$175
1998-00 Manchester United Umbro Home Shirt Xl
UMURO
1998-00 Manchester United Umbro Home Shirt Xl
$175
Pescara 2008-09 Home Shirt (#7) ((good) S)
UMURO
Pescara 2008-09 Home Shirt (#7) ((good) S)
$78

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