Skip to main content
Pass any supported retailer page URL to products.lookup and get back the canonical Product from Channel3’s catalog. The returned product.id is stable and works with products.retrieve afterward.
import Channel3 from "@channel3/sdk";

const client = new Channel3();

const result = await client.products.lookup({
  url: "https://brand.com/products/linen-shirt",
});

console.log(result.product.id);   // stable canonical ID
console.log(result.product.title);