Retrieve your data using the SDK’s built-in methods.
Copy
const result = await client.extraction.run({ urls: ["https://sandbox.kadoa.com/ecommerce"], name: "Product Extraction",});// Data is included in the resultconsole.log(result.data); // Array of extracted itemsconsole.log(result.pagination); // { page, limit, total, totalPages }