osint_get
Fetch data from URLs or resource IDs, returning raw content with SHA256 hash. Automatically handles web pages, PDFs, and binaries. Use summarize with a question to extract only relevant content.
Instructions
Fetch data from a resource ID or URL.
Automatically handles:
URLs → web pages (markdown + raw HTML), PDFs (downloaded), binaries
Resource IDs → structured data from connectors with optional filtering
Always returns full raw content with SHA256 hash for verification. Use 'summarize: true' with a question to extract only relevant content.
For local archival, provide output_path:
Web pages: saves raw.html, content.md, links.json, metadata.json to output_path/
PDFs/binaries: saves file to output_path
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum rows for tabular data (default: 100) | |
| target | Yes | URL (http/https) or resource_id from osint_search results | |
| columns | No | Specific columns to return (resource_id tabular data only) | |
| filters | No | Filter conditions (resource_id tabular data only) | |
| question | No | What to extract (e.g., 'all data', 'rows for California', 'key findings') | |
| summarize | No | If true with question, returns only relevant content. Default: false (full content). | |
| output_path | No | Path to save files. For PDFs: file path. For web pages: directory path (saves raw.html, content.md, metadata.json). |