extract_structured_data
Automatically extract structured data such as contact details, social media links, addresses, product info, and article content from webpages using customizable extraction types.
Instructions
Extract structured data from a webpage using advanced techniques.
Automatically detects and extracts:
Contact information (emails, phone numbers)
Social media links
Addresses
Prices and product information
Article content
data_type can be: all, contact, social, content, products, or addresses
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data_type | No | all | |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"data_type": {
"default": "all",
"title": "Data Type",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}