Rent a disposable VPS via x402
Rent a disposable VPS via x402. Pass `sku` from GET /catalog (e.g. server_small_1mo). Pay-on-success: USDC settles only when the box is reachable on TCP :22 (provisioning takes 3–5 min). Failed provisions never settle — the EIP-3009 authorization expires unused, agent pays nothing. Returns {rental_id, ipv4, expires_at, root_token, status}. Renewable via POST /rentals/{id}/renew. Servers: 30-day or 365-day, $12.99–$359.99, 4–8 vCPU / 8–24 GB RAM / 100–300 GB SSD, 200–600 Mbit/s unmetered.
15990000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-28
updated
Provider
vps.phoneagent.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8eCbd65228930060363C70854da7D37D57ffC358",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "15990000",
"maxTimeoutSeconds": 7200
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"region": "US-east",
"sku": "server_small_1mo"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"expires_at": 1782604800000,
"ipv4": null,
"rental_id": "v_xxxxxxxxxxxx",
"root_token": "rt_xxxxxxxxxxxx",
"sku": "server_small_1mo",
"status": "pending_settlement"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"expires_at": {
"description": "Unix ms.",
"type": "integer"
},
"ipv4": {
"description": "Box IPv4. May be null at first; poll GET /instance/{id}.",
"type": [
"string",
"null"
]
},
"rental_id": {
"type": "string"
},
"root_token": {
"description": "Bearer for GET /instance/{id} and POST /rentals/{id}/renew. Treat as a credential.",
"type": "string"
},
"sku": {
"type": "string"
},
"status": {
"enum": [
"pending_settlement"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://vps.phoneagent.xyz/rent" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://vps.phoneagent.xyz/rent");
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://vps.phoneagent.xyz/rent")
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/6475.json, and this resource appears in /discovery/resources and /discovery/search.