action dropx_get_products_link_search { label: "Search for similar products by providing a link to any e-commerce product." description: "Returns list of e-commerce product that are close to the one provided -- one from each provider" provider: dropx method: GET path: "/products/link-search" encoding: json input: { type: "object" properties: { providers: { type: "string" } url: { type: "string" } } required: ["url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }