batch_extract_timestamps
Extract webpage creation, modification, and publication timestamps from multiple URLs in batch using configurable options for timeout, user agent, redirects, and heuristic detection.
Instructions
Extract timestamps from multiple webpages in batch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | No | Optional configuration for the extraction | |
urls | Yes | Array of URLs to extract timestamps from |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Optional configuration for the extraction",
"properties": {
"enableHeuristics": {
"description": "Whether to enable heuristic timestamp detection (default: true)",
"type": "boolean"
},
"followRedirects": {
"description": "Whether to follow HTTP redirects (default: true)",
"type": "boolean"
},
"maxRedirects": {
"description": "Maximum number of redirects to follow (default: 5)",
"type": "number"
},
"timeout": {
"description": "Request timeout in milliseconds (default: 10000)",
"type": "number"
},
"userAgent": {
"description": "User agent string to use for requests",
"type": "string"
}
},
"type": "object"
},
"urls": {
"description": "Array of URLs to extract timestamps from",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"urls"
],
"type": "object"
}