jina_reader_process
Extract and convert webpage content from URLs into clean, LLM-friendly text using the Jina Reader API. Supports single or multiple URLs with basic or advanced extraction depth options.
Instructions
Convert any URL to clean, LLM-friendly text using Jina Reader API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extract_depth | No | The depth of the extraction process. "advanced" retrieves more data but costs more credits. | basic |
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"extract_depth": {
"default": "basic",
"description": "The depth of the extraction process. \"advanced\" retrieves more data but costs more credits.",
"enum": [
"basic",
"advanced"
],
"type": "string"
},
"url": {
"oneOf": [
{
"description": "Single URL to process",
"type": "string"
},
{
"description": "Multiple URLs to process",
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"url"
],
"type": "object"
}