Read, fetch, scrape, or extract any public webpage or URL for AI agents
Read, fetch, scrape, or extract any public webpage or URL for AI agents. Returns clean text, Markdown, links, and metadata, with automatic browser rendering for JavaScript-heavy pages.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1431 msmedian answer time
$0.005listed price per call
$0.005price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://smartfetch-production-ea53.up.railway.app/fetch
| Category | Code and developer |
|---|---|
| Provider host | smartfetch-production-ea53.up.railway.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 1431 ms |
Example input (from the provider)
{
"body": {
"force_browser": false,
"max_chars": 20000,
"url": "https://example.com/article"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"force_browser": {
"default": false,
"description": "Start with browser rendering instead of HTTP retrieval.",
"type": "boolean"
},
"max_chars": {
"default": 20000,
"description": "Maximum characters returned for content and Markdown.",
"maximum": 50000,
"minimum": 1000,
"type": "integer"
},
"url": {
"description": "Public HTTP or HTTPS URL to retrieve.",
"format": "uri",
"pattern": "^https?://",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"content": {
"type": "string"
},
"content_hash": {
"pattern": "^[0-9a-f]{64}$",
"type": "string"
},
"elapsed_ms": {
"minimum": 0,
"type": "integer"
},
"fallback_reason": {
"type": "string"
},
"final_url": {
"format": "uri",
"type": "string"
},
"links": {
"items": {
"properties": {
"href": {
"format": "uri",
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"href",
"text"
],
"type": "object"
},
"type": "array"
},
"links_returned": {
"minimum": 0,
"type": "integer"
},
"low_quality": {
"type": "boolean"
},
"markdown": {
"type": "string"
},
"max_chars": {
"minimum": 1000,
"type": "integer"
},
"original_content_chars": {
"minimum": 0,
"type": "integer"
},
"original_markdown_chars": {
"minimum": 0,
"type": "integer"
},
"render_method": {
"enum": [
"http",
"browser"
],
"type": "string"
},
"request_id": {
"type": "string"
},
"requested_url": {
"format": "uri",
"type": "string"
},
"returned_content_chars": {
"minimum": 0,
"type": "integer"
},
"returned_markdown_chars": {
"minimum": 0,
"type": "integer"
},
"service_version": {
"type": "string"
},
"status_code": {
"type": "integer"
},
"success": {
"type": "boolean"
},
"title": {
"type": "string"
},
"truncated": {
"type": "boolean"
},
"word_count": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"success",
"requested_url",
"final_url",
"status_code",
"render_method",
"elapsed_ms",
"title",
"content",
"markdown",
"links",
"word_count",
"content_hash",
"low_quality",
"truncated",
"original_content_chars",
"original_markdown_chars",
"returned_content_chars",
"returned_markdown_chars",
"links_returned",
"max_chars",
"request_id",
"service_version"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}