Stacktree
Stacktree: host generated HTML as a live, shareable web page on a permanent, private, unguessable link ($0.50). POST any HTML (a report, dashboard, landing page, static site, or any page an agent produced) with payment; we return the URL and a one-time claim token. No account, no key, no human in the loop. The paying wallet can update the page free at the same URL, and a deleted page is restorable for 30 days.
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://api.stacktr.ee/publish
| Category | Market data |
|---|---|
| Provider host | api.stacktr.ee |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 20 from 13 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"html": "<!doctype html>..."
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"description": "The page to publish. Send { \"html\": \"<!doctype html>...\" } (or a raw text/html body). Payment is carried in the PAYMENT-SIGNATURE header (x402 v2).",
"properties": {
"filename": {
"description": "Optional logical filename; defaults to index.html.",
"type": "string"
},
"html": {
"description": "The full HTML document to host.",
"type": "string"
}
},
"required": [
"html"
],
"type": "object"
}
},
"type": "object"
},
"output": {
"properties": {
"example": {
"description": "Returned once payment settles and the page is live.",
"properties": {
"claim_token": {
"description": "One-time secret to adopt this page into an account later.",
"type": "string"
},
"unlisted_token": {
"type": "string"
},
"url": {
"description": "The permanent private link to share.",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
}