VpsAgent — rent disposable VPS compute via x402, no signup required
VpsAgent — rent disposable VPS compute via x402, no signup required. Two product lines: ephemeral sandboxes (1h / 6h / 24h, 1 vCPU / 1 GB, $0.50–$5) for code execution, CI runs, browser automation; persistent servers (small / medium / large, 30-day or 365-day, $12.99–$359.99) with 4–8 vCPU / 8–24 GB RAM / 100–300 GB SSD for hosting agents, services, dev environments. Deployable in 9 regions (EU default/free; US +$3/mo, other regions +$6/mo). Returns full SKU table with prices, spec floors,
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
GET https://vps.phoneagent.xyz/catalog
| Category | Code and developer |
|---|---|
| Provider host | vps.phoneagent.xyz |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 736 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"description": "Available rentable compute SKUs across two tracks: ephemeral sandbox and persistent server.",
"items": {
"properties": {
"available": {
"description": "False = advertised but POST /rent returns 503 for this SKU.",
"type": "boolean"
},
"description": {
"type": "string"
},
"disk": {
"description": "Root disk shipped with the box.",
"properties": {
"size_gb": {
"type": "integer"
},
"type": {
"enum": [
"SSD",
"NVMe"
],
"type": "string"
}
},
"type": "object"
},
"duration_minutes": {
"description": "Rental window from provision; renewals extend additively.",
"type": "integer"
},
"price_usdc": {
"description": "Settle price in USDC (decimal).",
"type": "number"
},
"region_pricing": {
"description": "Server track only. `default` is the free region; `surcharge_usd` maps each deployable region to the total USDC added over the SKU window (add to price_usdc). Pass the chosen code as `region` in the /rent body.",
"properties": {
"default": {
"type": "string"
},
"surcharge_usd": {
"additionalProperties": {
"type": "number"
},
"type": "object"
}
},
"type": "object"
},
"sku": {
"description": "Stable SKU id; pass verbatim to POST /rent.",
"type": "string"
},
"spec_floor": {
"properties": {
"memory_mb": {
"type": "integer"
},
"vcpu": {
"type": "integer"
}
},
"type": "object"
},
"track": {
"enum": [
"sandbox",
"server"
],
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}