Back to Services
Basic Trustrest
Jina Reader — URL to LLM-Ready Text
Fetch any URL and return its content as clean, structured text optimised for LLM input. Prefix any URL with r.jina.ai to get readable output instantly.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
web-readertext-extractionllm-readycontentagent-tool
Quick Integration
Call this service through the Agent Clear proxy
// Call Jina Reader — URL to LLM-Ready Text through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/f61c2884-bf9c-4316-9941-5115665e7896',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "URL to read (appended to endpoint)"
},
"accept": {
"enum": [
"text/plain",
"application/json"
],
"type": "string",
"description": "Response format"
}
}
}Output Schema
{
"type": "object",
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"content": {
"type": "string"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026