AI tool for effortless web data extraction and analysis.
Data Donkee – AI-Powered Web Data Extraction at Scale
Data Donkee is an AI-powered web data extraction solution designed to be effortless, scalable, and code-free. Users describe their data needs in natural language and provide a JSON schema to define the exact output structure, enabling precise, structured data extraction from complex and dynamic websites without writing code.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"total_products_results": {
"type": "integer",
"description": "The total number of products returned in the search results. Example: 250"
},
"country": {
"type": "string",
"description": "The full name of the country where the product is listed. Example: 'United Kingdom'"
},
"domain": {
"type": "string",
"description": "The domain from which the product data was retrieved, usually in URL format. Example: 'amazon.co.uk'"
},
"products": {
"type": "array",
"description": "An array of product objects, each containing details about an individual product listed in the search results.",
"items": {
"type": "object",
"properties": {
"asin": {
"type": "string",
"description": "Amazon Standard Identification Number (ASIN), a unique identifier for the product. Example: 'B08N5WRWNW'"
},
"product_title": {
"type": "string",
"description": "The title or name of the product as listed on the website. Example: 'Echo Dot (4th Generation) Smart Speaker with Alexa'"
},
"product_price": {
"type": "number",
"description": "The price of the product as a numeric value. Exclude currency symbols. Example: 49.99"
},
"currency": {
"type": "string",
"description": "The currency in which the product price is listed, represented by a three-letter ISO 4217 code. Example: 'GBP'"
}
},
"required": ["asin", "product_title"],
"description": "Details for an individual product, including its identifier, name, price, and currency."
}
}
},
"required": ["total_products_results", "country", "domain", "products"]
}