AI agents cannot read modern websites. React, paywalls, CAPTCHAs, and messy HTML block them from accessing the information they need.
Modern SPAs load content dynamically. Simple HTTP requests return empty shells.
Cloudflare, PerimeterX, and CAPTCHAs block automated access to content.
Ads, navigation, footers, and boilerplate obscure the actual content.
AI agents automatically discover and use the Tryb API without any human configuration
AI agent fetches llms.txt or MCP config from tryb.dev to learn available web reading tools
Agent sends request with x402 Lightning payment. $0.05 per page, verified in milliseconds
Clean Markdown or JSON returned instantly. Agent processes the web content and acts
Web reading endpoints your agents can call
Read any webpage and return clean, structured Markdown or JSON. Handles JavaScript rendering automatically.
urlformatCapture a full-page screenshot of any webpage. Returns PNG, JPEG, or WebP.
urlwidthheightformatSearch the web and return structured results with optional content extraction.
querynum_resultsinclude_contentRead multiple URLs in a single request with bulk pricing discount.
urlsformatconcurrencyExtract specific data from a webpage using a custom schema. Tables, lists, and structured content.
urlschemaformatMachine-readable configurations for autonomous agents
{
"name": "tryb",
"version": "1.0.0",
"description": "Web reading API for AI agents",
"tools": [
{
"name": "read",
"description": "Read any webpage, return clean Markdown/JSON",
"cost": { "amount": 0.05, "currency": "USD" },
"inputSchema": {
"type": "object",
"properties": {
"url": { "type": "string", "description": "URL to read" },
"format": { "type": "string", "enum": ["markdown", "json", "html"] }
},
"required": ["url"]
}
},
{
"name": "screenshot",
"cost": { "amount": 0.02, "currency": "USD" },
"inputSchema": {
"type": "object",
"properties": {
"url": { "type": "string" },
"width": { "type": "number", "default": 1280 },
"height": { "type": "number", "default": 720 }
},
"required": ["url"]
}
}
],
"payment": {
"protocol": "x402",
"network": "lightning",
"endpoint": "https://api.tryb.dev/v1"
}
}Choose the door that fits your use case
Works with leading AI agent frameworks