fetchUrlContent
Retrieves and parses content from a specified URL to extract text, enabling access to web-based information for knowledge management and analysis purposes.
Instructions
Fetches the content of a URL. Particularly useful for fetching parsed text file URLs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
tenantId | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string"
},
"tenantId": {
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}