Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Visual product discovery by image URL or base64 upload.
import Channel3 from "@channel3/sdk"; const client = new Channel3(); const results = await client.products.search({ image_url: "https://example.com/images/blue-couch.jpg", }); console.log(results.products[0].title);
import fs from "node:fs"; import Channel3 from "@channel3/sdk"; const client = new Channel3(); const b64 = fs.readFileSync("shoe.jpg").toString("base64"); const results = await client.products.search({ base64_image: b64 }); console.log(results.products[0].title);
Was this page helpful?