action klarna_products_using_get { label: "API for fetching Klarna product information" provider: klarna method: GET path: "/public/openai/v0/products" encoding: json input: { type: "object" properties: { budget: { type: "integer" } q: { type: "string" } size: { type: "integer" } } required: ["q"] additionalProperties: false } output: { type: "object" properties: { products: { type: "array" items: { type: "object" properties: { attributes: { type: "array" items: { type: "string" } } name: { type: "string" } price: { type: "string" } url: { type: "string" } } } } } } }