extract
Pull structured data from web pages by defining a schema with AI-powered instructions. Ideal for scraping and organizing targeted information efficiently.
Instructions
Extract structured data from web pages using AI-powered instructions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes | Schema defining the data to extract | |
url | Yes | URL to extract from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"schema": {
"additionalProperties": {},
"description": "Schema defining the data to extract",
"type": "object"
},
"url": {
"description": "URL to extract from",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"schema"
],
"type": "object"
}