Curatoria paid markdown design system
Curatoria paid markdown design system
10000 (raw units)
price
4
calls / 30d
2
unique payers
2026-08-31
updated
Provider
curatoria.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8aa327403ED786cA56EB8F59C6c8831A8BD73485",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"id": "curatoria-demo-md"
},
"queryParams": {
"id": "<catalog-slug>"
},
"type": "http"
},
"output": {
"example": "# paid design markdown\n",
"type": "json"
}
},
"routeTemplate": "/design-systems/:id",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"properties": {
"id": {
"description": "Catalog slug for the paid Curatoria resource.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"description": "Markdown content returned after successful x402 settlement.",
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"curatoria": {
"resourceType": "design_md",
"routePattern": "GET /design-systems/:id"
}
}Use it
curl
curl "https://curatoria.dev/design-systems/:id" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://curatoria.dev/design-systems/:id");
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://curatoria.dev/design-systems/:id")
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/6371.json, and this resource appears in /discovery/resources and /discovery/search.