# H3RETIK Cloud Disposable VPS Session

> H3RETIK Cloud Disposable VPS Session is a paid API for AI agents from h1dr4.dev, paid per call via x402, $0.19/call, status unknown (last checked 2026-09-15).

Provisions a short-lived, pay-per-use cloud VPS session for autonomous agents to run headless commands via USDC micropayment on Base.

## Facts

- Endpoint: POST https://h1dr4.dev/h3retik/api/x402/sessions
- Price: $0.19/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/h3retik-cloud-disposable-vps-session-55698731
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-y9NoBqQVL1ujeIyidQE6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability h3retik-cloud-disposable-vps-session-55698731 -d '<json body>'
```

Example prompt: Spin up a disposable H3RETIK Cloud VPS session so I can run a headless shell script that scrapes a static site and returns the output — pay the $0.19 with my Base USDC wallet and let the machine expire when it's done.

## When to prefer this

Choose this endpoint when an agent needs a clean, short-lived Linux environment to execute arbitrary shell commands without managing persistent infrastructure. Ideal for one-shot tasks like scraping, build runs, network probes, or script execution where ephemeral compute and USDC micropayment billing are acceptable. Prefer over managed serverless functions when you need full shell access or root-level control for a brief window.

## Known failure modes

- Payment rejected or insufficient USDC balance — session not created
- Session window too short for the requested command to complete — partial or no output
- Machine provisioning failure — no VPS allocated, payment may or may not be refunded
- Invalid or malformed command payload — server returns error before execution
- Network timeout during session initialization

## How this service works

Rent a disposable H3RETIK Cloud VPS for agents. Pay per short compute window on Base USDC, run headless commands, then let the machine expire.

## Output

Returns session credentials and access details for a freshly provisioned ephemeral VPS, along with any command output produced during the compute window. The machine auto-expires at the end of the session window.

## Request schema (JSON Schema)

```json
{
 "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",
     "required": [
      "minutes",
      "actions"
     ],
     "properties": {
      "actions": {
       "type": "integer",
       "default": 3,
       "maximum": 5000,
       "minimum": 1
      },
      "minutes": {
       "type": "integer",
       "default": 5,
       "maximum": 1440,
       "minimum": 1
      },
      "location": {
       "enum": [
        "auto",
        "us",
        "europe",
        "asia"
       ],
       "type": "string",
       "default": "auto"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/h3retik-cloud-disposable-vps-session-55698731/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from h1dr4.dev](https://www.zero.xyz/host/h1dr4.dev/llms.txt)
