extract-web-data
Extract structured data as JSON from any webpage by providing a URL and a natural language description of the data to retrieve. Ideal for transforming unstructured web content into actionable insights.
Instructions
Extracts structured data as JSON from a web page given a URL using a Natural Language description of the data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | Natural Language description of the data to extract from the page | |
url | Yes | The URL of the public webpage to extract data from |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "Natural Language description of the data to extract from the page",
"type": "string"
},
"url": {
"description": "The URL of the public webpage to extract data from",
"type": "string"
}
},
"required": [
"url",
"prompt"
],
"type": "object"
}