crawling_exa
Extract full text, metadata, and structured data from specified URLs for detailed content analysis. Designed for web content retrieval within a controlled environment using Exa AI.
Instructions
Extract and crawl content from specific URLs using Exa AI - retrieves full text content, metadata, and structured information from web pages. Ideal for extracting detailed content from known URLs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxCharacters | No | Maximum characters to extract (default: 3000) | |
url | Yes | URL to crawl and extract content from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxCharacters": {
"description": "Maximum characters to extract (default: 3000)",
"type": "number"
},
"url": {
"description": "URL to crawl and extract content from",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}