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.
image_url
query
import Channel3 from "@channel3/sdk"; const client = new Channel3(); async function main() { const response = await client.products.search({ image_url: "https://example.com/images/shoe.jpg", }); console.log(response.products[0]?.title); } main();
from channel3_sdk import Channel3 client = Channel3() def main(): response = client.products.search( image_url="https://example.com/images/shoe.jpg", ) print(response.products[0].title) if __name__ == "__main__": main()
Was this page helpful?