Back to Services
Basic Trustrest
Firecrawl — Web Page to Clean Markdown
Convert any web page into clean, LLM-ready markdown. Handles JavaScript rendering, removes boilerplate, and extracts the main content. Built specifically for AI agent consumption.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
web-extractionmarkdowncontentllm-readyagent-toolbrowsing
Quick Integration
Call this service through the Agent Clear proxy
// Call Firecrawl — Web Page to Clean Markdown through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/44b1a710-5feb-44f4-b4bf-287ec40b8b05',
{
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 extract content from"
},
"formats": {
"type": "array",
"items": {
"enum": [
"markdown",
"html",
"rawHtml",
"links",
"screenshot"
],
"type": "string"
}
},
"waitFor": {
"type": "number",
"description": "Wait ms for JS rendering"
},
"onlyMainContent": {
"type": "boolean",
"description": "Strip headers, footers, and nav"
}
}
}Output Schema
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"markdown": {
"type": "string"
},
"metadata": {
"type": "object"
}
}
},
"success": {
"type": "boolean"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 30 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026