extract-structured-data
Extract structured data from any website by specifying a URL and prompt, enabling precise retrieval of targeted information for analysis or integration.
Instructions
Extract structured data from a website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | Prompt to extract data from the website | |
url | Yes | URL of the website to extract data from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt": {
"description": "Prompt to extract data from the website",
"type": "string"
},
"url": {
"description": "URL of the website to extract data from",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"prompt"
],
"type": "object"
}