Hyrule Cloud
Hyrule Cloud is pay-per-use infrastructure for AI agents on AS215932: IPv6-native compute, outbound requests over Direct, Tor, I2P, or Yggdrasil, BGP/routing intelligence, IP/ASN intelligence, DNS diagnostics, RDAP/WHOIS registry lookups, web and deep TLS checks, mail deliverability, outside-in port reachability, NAT port-forward checks, VoIP/SIP diagnostics. Calls settle in USDC via x402. This endpoint: Provision a bare VM with SSH access.
The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.
Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.
Accepts
The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.
Pay 2.8 USDC on Base to 0xFf45…59f15. The signed payment is good for 5 minutes.
- Paid to
- 0xFf45…59f15
- USD Coin contract
- 0x8335…02913
- Payment window
- 5 minutes
- As published
- 2800000 smallest units
That figure is in the token’s smallest units. Roundhouse does not hold this contract’s decimals, so it is shown as published rather than converted.
- Paid to
- 0xFf45…59f15
- Token contract
- 0x3c49…c3359
- Payment window
- 5 minutes
That figure is in the token’s smallest units. Roundhouse does not hold this contract’s decimals, so it is shown as published rather than converted.
- Paid to
- 0xFf45…59f15
- Token contract
- 0xaf88…e5831
- Payment window
- 5 minutes
The catalog’s raw entry
[
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xFf4555af30A1066A889324a3Fe88c76796159f15",
"amount": "2800000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xFf4555af30A1066A889324a3Fe88c76796159f15",
"amount": "2800000",
"scheme": "exact",
"network": "eip155:137",
"maxTimeoutSeconds": 300
},
{
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xFf4555af30A1066A889324a3Fe88c76796159f15",
"amount": "2800000",
"scheme": "exact",
"network": "eip155:42161",
"maxTimeoutSeconds": 300
}
]Extensions
{
"bazaar": {
"info": {
"input": {
"body": {
"os": "debian-13",
"size": "sm",
"open_ports": [
80,
443
],
"ssh_pubkey": "ssh-ed25519 AAAA…",
"domain_mode": "auto",
"duration_days": 7
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"vm_id": "vm_a1b2c3d4e5f6",
"status": "provisioning",
"status_url": "/v1/vm/vm_a1b2c3d4e5f6/status"
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"title": "VMCreateRequest",
"required": [
"duration_days",
"ssh_pubkey"
],
"properties": {
"os": {
"type": "string",
"title": "Os",
"default": "debian-13",
"description": "OS template name"
},
"size": {
"enum": [
"xs",
"sm",
"md",
"lg"
],
"type": "string",
"title": "VMSize",
"default": "xs",
"description": "VM size tier"
},
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Domain",
"default": null,
"description": "Domain to register (required when domain_mode=custom)"
},
"quote_id": {
"anyOf": [
{
"type": "string",
"maxLength": 36
},
{
"type": "null"
}
],
"title": "Quote Id",
"default": null,
"description": "Optional durable quote id from POST /v1/vm/quote. When set, the server provisions the spec stored on the quote at the quote-locked price; the rest of this body must match that stored spec. Omit for the legacy compute-price-from-body flow."
},
"resources": {
"anyOf": [
{
"type": "object",
"title": "VMOrderResources",
"required": [
"vcpu",
"ram_mb",
"disk_gb"
],
"properties": {
"vcpu": {
"type": "integer",
"title": "Vcpu",
"exclusiveMinimum": 0
},
"ram_mb": {
"type": "integer",
"title": "Ram Mb",
"exclusiveMinimum": 0
},
"disk_gb": {
"type": "integer",
"title": "Disk Gb",
"exclusiveMinimum": 0
}
},
"description": "Requested final resources; validated against the live catalog server-side."
},
{
"type": "null"
}
],
"default": null,
"description": "Optional exact final resources. New orders support 1-4 vCPU, 1-8 GiB RAM, and 10-40 GB SSD. The server selects the cheapest compatible base profile."
},
"open_ports": {
"type": "array",
"items": {
"type": "integer"
},
"title": "Open Ports",
"description": "Inbound TCP ports to allow (22 always included)"
},
"ssh_pubkey": {
"type": "string",
"title": "Ssh Pubkey",
"description": "SSH public key for root access (ed25519 or rsa)"
},
"domain_mode": {
"enum": [
"auto",
"custom"
],
"type": "string",
"title": "DomainMode",
"default": "auto"
},
"setup_script": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Setup Script",
"default": null,
"description": "Optional shell script to execute after boot via cloud-init"
},
"duration_days": {
"type": "integer",
"title": "Duration Days",
"maximum": 365,
"minimum": 1,
"description": "Hosting duration in days"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"title": "VMCreateResponse",
"required": [
"vm_id",
"status",
"status_url"
],
"properties": {
"vm_id": {
"type": "string",
"title": "Vm Id"
},
"status": {
"enum": [
"provisioning",
"ready",
"running",
"suspended",
"failed",
"destroyed"
],
"type": "string",
"title": "VMStatus"
},
"status_url": {
"type": "string",
"title": "Status Url"
},
"management_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Management Url",
"default": null
},
"management_token": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Management Token",
"default": null
},
"estimated_ready_seconds": {
"type": "integer",
"title": "Estimated Ready Seconds",
"default": 60
}
}
}
}
}
}
}
}
}Provenance
- Seen in the source catalog
- 2026-07-24 19:35Z
- Last indexed by Roundhouse
- 2026-07-31 06:10Z
- Last enriched (probe, favicon, geo)
- 2026-09-10 16:15Z
- x402 version
- 2
- Max timeout
- 300s
- Liveness probe
- HTTP 404
Hand this page to an agent
Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.
GET api.roundhouseai.io/v0/endpoints
Nothing indexed for this service or its provider yet. Not a claim that it is unused — only that we hold no record. Verified volume counts only settlements with an on-chain EIP-3009 marker.
Show the promptHide the prompt
Using Roundhouse, look up the x402 service Hyrule Cloud and tell me whether it is worth paying: what a call costs, whether the endpoint answered when last probed, and what its payment record actually shows. curl -s 'https://api.roundhouseai.io/v0/endpoints?q=Hyrule%20Cloud' curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>' Then call it: read the price from the live 402 at https://cloud.hyrule.host/v1/vm/create, never from a cached figure, and pay with an x402 client. The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except /v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402, or use an organization key from https://roundhouseai.io/dashboard/team. If you do not have Roundhouse tools or skills installed, read https://roundhouseai.io/skill.md first — it is the whole procedure.