๐ I need product line item data
Introduction
For developers looking to gain even more detailed information from receipts, you can take advantage of our extra charged service to extract individual product line items. All you need to do is set the extractLineItems parameter to true in your API request. This will provide you with a granular breakdown of each item purchased, including product names, quantities, and individual item prices. This additional level of detail can be incredibly useful for more in-depth analyses and reports. Please remember that this is an extra service and comes with an additional charge. Happy coding!
Steps
- Head over to one of our API endpoints that got extractLineItems available.
- Set extractLineItems to true

- Hit Try It!
- Voila! You can find productLineItems inside the object - entities
-
"entities": { "productLineItems": [ { "data": { "name": { "data": "CHAMP BEEF/VEGS 1.15K", "regions": [], "text": "CHAMP BEEF/VEGS 1.15K" }, "quantity": { "data": 1, "regions": [], "text": "1" }, "unitPrice": { "data": 4.19, "regions": [], "text": "4.19" }, "totalPrice": { "data": 4.19, "regions": [], "text": "4.19" } }, "confidenceLevel": 0.65, "text": "CHAMP BEEF/VEGS 1.15K $4.19", "index": 10, "regions": [] }, { "data": { "name": { "data": "FINDLAY PINK HIMALYAN ROCK SALT 1KG", "regions": [], "text": "FINDLAY PINK HIMALYAN ROCK SALT 1KG" }, "quantity": { "data": 1, "regions": [], "text": "1" }, "unitPrice": { "data": 2.69, "regions": [], "text": "2.69" }, "totalPrice": { "data": 2.69, "regions": [], "text": "2.69" } }, "confidenceLevel": 0.65, "text": "FINDLAY PINK HIMALYAN ROCK SALT 1KG $2.69", "index": 11, "regions": [] }, { "data": { "name": { "data": "GHIOTTI FUSILLI 500G", "regions": [], "text": "GHIOTTI FUSILLI 500G" }, "quantity": { "data": 1, "regions": [], "text": "1" }, "unitPrice": { "data": 3.99, "regions": [], "text": "3.99" }, "totalPrice": { "data": 3.99, "regions": [], "text": "3.99" } }, "confidenceLevel": 0.65, "text": "GHIOTTI FUSILLI 500G $3.99", "index": 12, "regions": [] } ] },
-
Updated 3 months ago