Card snapshot
agent-utility-network.frosty-sound-4560.workers.dev
·
2026-09-10 21:41:04 UTC
·
95b0de86c6d8ebe11eb4f249fc68fb6d71c585a339d1e8f91eaa5cad2396aa65
This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.
{
"name": "Agent Utility Network",
"description": "Machine-facing deterministic utilities for AI agents. Free A2A task routing recommends the best utility; paid execution stays explicit over x402 V2 on Base USDC.",
"supportedInterfaces": [
{
"url": "https://agent-utility-network.frosty-sound-4560.workers.dev/a2a",
"protocolBinding": "JSONRPC",
"protocolVersion": "1.0"
}
],
"provider": {
"organization": "AveDaris",
"url": "https://agent-utility-network.frosty-sound-4560.workers.dev/docs"
},
"version": "0.6.0",
"documentationUrl": "https://agent-utility-network.frosty-sound-4560.workers.dev/docs",
"capabilities": {
"streaming": false,
"pushNotifications": false,
"extendedAgentCard": false
},
"securitySchemes": {},
"securityRequirements": [],
"defaultInputModes": [
"text/plain",
"application/json"
],
"defaultOutputModes": [
"text/plain",
"application/json"
],
"skills": [
{
"id": "json.repair",
"name": "json.repair",
"description": "Repair intended JSON that fails parsing because of common syntax defects, then return parsed structured JSON without inventing fields. Price: $0.005 per call.",
"tags": [
"x402",
"base-usdc",
"json_repair",
"data_normalization"
],
"examples": [
"Fix this broken JSON: {'name':'Acme',}",
"Repair malformed JSON and return a valid parsed object.",
"Remove the formatting errors from this JSON payload."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "entity.normalize",
"name": "entity.normalize",
"description": "Canonicalize organization and vendor names before matching or deduplication, returning stable canonical text and tokens. Price: $0.005 per call.",
"tags": [
"x402",
"base-usdc",
"entity_normalization",
"data_normalization"
],
"examples": [
"Canonicalize Acme, Inc. for vendor matching.",
"Normalize this organization name before deduplication.",
"Strip LLC/Inc punctuation and return stable company-name tokens."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "text.extract_signals",
"name": "text.extract_signals",
"description": "A block of text contains URLs, email addresses, USD amounts, or ISO-format dates that should be returned as arrays. Price: $0.008 per call.",
"tags": [
"x402",
"base-usdc",
"signal_extraction",
"document_processing"
],
"examples": [
"Extract the emails, links, dollar amounts, and ISO dates from this message.",
"Find every URL and email address in this text.",
"Turn the obvious contact and payment signals in this document into structured arrays."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "json.validate",
"name": "json.validate",
"description": "Check whether input is strict JSON without modifying it and return deterministic parse diagnostics. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"json",
"validation",
"structured_data"
],
"examples": [
"Check whether this JSON is valid.",
"Validate this JSON payload and tell me its value type.",
"Does this string parse as strict JSON?"
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "json.pretty",
"name": "json.pretty",
"description": "Pretty-print valid JSON with deterministic two-space formatting. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"json",
"format",
"structured_data"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "json.minify",
"name": "json.minify",
"description": "Minify valid JSON without changing its parsed data model. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"json",
"minify",
"structured_data"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "url.parse",
"name": "url.parse",
"description": "An HTTP or HTTPS URL needs deterministic protocol, hostname, port, path, query, hash, origin, and href fields. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"url",
"parse",
"web"
],
"examples": [
"Break this URL into hostname, path, query parameters, and fragment.",
"Parse https://example.com/a?x=1#top into structured components.",
"Extract the host and path from this web address."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "url.normalize",
"name": "url.normalize",
"description": "Normalize an HTTP(S) URL for stable comparison and deduplication by removing fragments/default ports and ordering query entries deterministically. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"url",
"normalize",
"deduplication",
"web"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "base64.encode",
"name": "base64.encode",
"description": "Bounded UTF-8 text needs deterministic Base64 encoding. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"base64",
"encode",
"conversion"
],
"examples": [
"Encode hello world as Base64.",
"Convert this UTF-8 string to Base64.",
"Give me the Base64 encoding of this text."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "base64.decode",
"name": "base64.decode",
"description": "Decode bounded Base64 into UTF-8 text with validation. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"base64",
"decode",
"conversion"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "text.slugify",
"name": "text.slugify",
"description": "Convert text into a deterministic lowercase URL-safe slug. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"text",
"slug",
"normalize"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "email.normalize",
"name": "email.normalize",
"description": "Parse an email address and return a deterministic lowercase comparison form without claiming mailbox verification. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"email",
"normalize",
"identity"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "uuid.validate",
"name": "uuid.validate",
"description": "Validate canonical UUID syntax and return normalized UUID, version, and variant metadata. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"uuid",
"validation",
"identifier"
],
"examples": [
"Is 550e8400-e29b-41d4-a716-446655440000 a valid UUID?",
"Validate this UUID and return its version and variant.",
"Check this GUID for canonical UUID syntax."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "querystring.parse",
"name": "querystring.parse",
"description": "A URL query string needs deterministic ordered entries and grouped values. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"querystring",
"parse",
"url",
"web"
],
"examples": [
"Parse ?a=1&a=2&b=hello into query parameters.",
"Extract all values from this URL query string and preserve repeated keys.",
"Turn these search params into ordered entries and grouped values."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "dns.lookup",
"name": "dns.lookup",
"description": "An agent needs current public DNS records for a hostname. Price: $0.002 per call.",
"tags": [
"x402",
"base-usdc",
"dns",
"domain",
"lookup",
"network"
],
"examples": [
"Look up A, AAAA, and MX records for example.com."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "domain.http_probe",
"name": "domain.http_probe",
"description": "An agent needs current status, redirect, content-type, or basic response metadata from a public HTTP(S) URL. Price: $0.003 per call.",
"tags": [
"x402",
"base-usdc",
"http",
"domain",
"probe",
"uptime",
"headers"
],
"examples": [
"Check whether https://example.com is up and return its redirects and content type."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "robots.inspect",
"name": "robots.inspect",
"description": "An agent needs machine-readable robots.txt user-agent rules or sitemap hints for a public site. Price: $0.003 per call.",
"tags": [
"x402",
"base-usdc",
"robots",
"crawler",
"website",
"sitemap",
"inspect"
],
"examples": [
"Inspect example.com robots.txt and list sitemap URLs."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "page.metadata",
"name": "page.metadata",
"description": "An agent needs current title, description, canonical URL, status, and selected HTTP metadata from a public page. Price: $0.003 per call.",
"tags": [
"x402",
"base-usdc",
"page",
"web",
"metadata",
"fetch",
"title",
"canonical"
],
"examples": [
"Get the title, meta description, and canonical URL for this webpage."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "page.read",
"name": "page.read",
"description": "An agent needs bounded current text from a public HTML or text page without browser rendering. Price: $0.005 per call.",
"tags": [
"x402",
"base-usdc",
"page",
"web",
"read",
"extract",
"text",
"provenance"
],
"examples": [
"Read this public webpage and return clean text with the final URL."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "email.domain_check",
"name": "email.domain_check",
"description": "An agent needs public DNS evidence that the domain portion of an email has MX or address records. Price: $0.002 per call.",
"tags": [
"x402",
"base-usdc",
"email",
"domain",
"dns",
"mx",
"check"
],
"examples": [
"Check whether user@example.com has public mail-routing DNS signals."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "website.health_report",
"name": "website.health_report",
"description": "An agent wants one purchase that combines current DNS, HTTP, redirect, robots, and metadata evidence for a public website. Price: $0.02 per call.",
"tags": [
"x402",
"base-usdc",
"website",
"health",
"dns",
"http",
"robots",
"metadata",
"report"
],
"examples": [
"Run a complete website health report for https://example.com."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "vendor.intelligence",
"name": "vendor.intelligence",
"description": "An agent wants normalized vendor identity plus current public domain, HTTP, page metadata/text, and extracted signals in one response. Price: $0.04 per call.",
"tags": [
"x402",
"base-usdc",
"vendor",
"company",
"domain",
"website",
"intelligence",
"profile",
"provenance"
],
"examples": [
"Build a public vendor intelligence profile for Example Inc using https://example.com."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "data.clean_pipeline",
"name": "data.clean_pipeline",
"description": "An agent wants JSON repair with optional entity normalization and text signal extraction in one deterministic purchase. Price: $0.015 per call.",
"tags": [
"x402",
"base-usdc",
"data",
"clean",
"json",
"normalize",
"signals",
"pipeline"
],
"examples": [
"Run this malformed JSON, vendor name, and note through the data clean pipeline."
],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "ephemeral.utility.issue",
"name": "ephemeral.utility.issue",
"description": "Issue a short-lived capability-token lease for a bounded declarative composition of approved AUN local utilities. Price: $0.02 per call.",
"tags": [
"x402",
"base-usdc",
"ephemeral",
"composition",
"lease",
"capability",
"just_in_time"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
},
{
"id": "delivery.proof",
"name": "delivery.proof",
"description": "Return a deterministic paid delivery proof for autonomous clients and service verifiers. Price: $0.001 per call.",
"tags": [
"x402",
"base-usdc",
"delivery_proof",
"verification",
"liveness"
],
"examples": [],
"inputModes": [
"text/plain",
"application/json"
],
"outputModes": [
"text/plain",
"application/json"
]
}
]
}