Convert a document: HTML to Markdown or text, Markdown to HTML or text, a public URL to cl
Convert a document: HTML to Markdown or text, Markdown to HTML or text, a public URL to clean Markdown, text, or HTML (scripts, styles, and boilerplate removed), or a PDF (base64 or URL, 5MB, 200 pages) to text. Returns the converted document with its title or page count. $0.01.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-18
updated
Provider
scribe.vimabrosta.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x693d72fc5ad1f09B1c62be3707679cbe334c88df",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "AC3BtRaGzvyEVZnx6z4qMDNxD5dmnoyPTz5EWW3Pn2tg",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "AC3BtRaGzvyEVZnx6z4qMDNxD5dmnoyPTz5EWW3Pn2tg",
"asset": "So11111111111111111111111111111111111111112",
"amount": "95633",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"from": "url",
"input": "https://example.com/",
"to": "markdown"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"characters": 180,
"from": "url",
"output": "# Example Domain\n\nThis domain is for use in illustrative examples...",
"receipt": {
"price": "$0.01",
"product": "convert"
},
"title": "Example Domain",
"to": "markdown"
},
"type": "json"
}
},
"name": "Scribe",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"from": {
"enum": [
"html",
"markdown",
"url",
"pdf"
],
"type": "string"
},
"input": {
"description": "The HTML or Markdown source, a public URL, or a PDF as base64 or a public URL.",
"type": "string"
},
"to": {
"enum": [
"markdown",
"html",
"text"
],
"type": "string"
}
},
"required": [
"from",
"to",
"input"
],
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"domain",
"whois",
"rdap",
"dns",
"tls",
"translation",
"translate",
"convert",
"markdown",
"pdf",
"html",
"screenshot",
"render"
]
}
}Use it
curl
curl "https://scribe.vimabrosta.com/v1/convert" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://scribe.vimabrosta.com/v1/convert");
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://scribe.vimabrosta.com/v1/convert")
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/13445.json, and this resource appears in /discovery/resources and /discovery/search.