Exende Resolve turns a public URL into machine-readable web, document, data, text, or imag
Exende Resolve turns a public URL into machine-readable web, document, data, text, or image metadata. It detects resource type, extracts static HTML, renders JavaScript pages only when needed, parses PDF text, JSON, CSV and plain text, and returns a normalized result.
30000 (raw units)
price
6
calls / 30d
1
unique payers
2026-08-26
updated
Provider
resolve.exende.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9d2526Fa73fcb300B78075c4446Ec0B306f1a3f9",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"output": "auto",
"render": "auto",
"url": "https://example.com/article"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"id": "resolve_0123456789abcdef0123456789abcdef",
"limits": {
"output_bytes": 900,
"truncated": false
},
"metadata": {
"title": "Example"
},
"processing": {
"browser_ms_used": null,
"browser_used": false,
"cost_estimate_usd": "0.001100",
"duration_ms": 800,
"ocr_used": false,
"strategy": "static_html"
},
"read_token": "ex_resolve_read_REDACTED",
"resolved": {
"data": null,
"format": "html",
"links": [],
"markdown": "# Example content",
"text": "Example content.",
"type": "webpage"
},
"resource": {
"content_disposition": null,
"content_type": "text/html",
"final_url": "https://example.com/article",
"redirect_count": 0,
"requested_url": "https://example.com/article",
"size_bytes": 42000
},
"status": "completed",
"status_url": "https://resolve.exende.dev/v1/resolves/resolve_0123456789abcdef0123456789abcdef"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"output": {
"default": "auto",
"enum": [
"auto",
"markdown",
"text",
"json"
],
"type": "string"
},
"render": {
"default": "auto",
"description": "Use auto to render only when static HTML is not useful and page signals indicate client-side content.",
"enum": [
"auto",
"always",
"never"
],
"type": "string"
},
"url": {
"description": "A public HTTP or HTTPS resource URL.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": true,
"properties": {
"id": {
"pattern": "^resolve_[a-f0-9]{32}$",
"type": "string"
},
"read_token": {
"type": "string"
},
"status": {
"enum": [
"completed",
"failed",
"processing"
],
"type": "string"
},
"status_url": {
"format": "uri",
"type": "string"
}
},
"required": [
"id",
"status",
"resource",
"resolved",
"processing",
"limits"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "exende_resolve",
"s": [
"cdp_sdk_server"
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"maxItems": 11,
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
},
"eip2612GasSponsoring": {},
"erc20ApprovalGasSponsoring": {},
"payment-identifier": {
"info": {
"required": true
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://resolve.exende.dev/v1/resolve" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://resolve.exende.dev/v1/resolve");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://resolve.exende.dev/v1/resolve")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8462.json, and this resource appears in /discovery/resources and /discovery/search.