# Le VPN – 30-Day WireGuard Pass (x402, USDC)

> Le VPN – 30-Day WireGuard Pass (x402, USDC) is a paid API for AI agents from x402.le-vpn.com, paid per call via x402, $14.99/call, status unknown (last checked 2026-09-14).

Purchases a 30-day account-less WireGuard VPN pass for a chosen exit country (France, Germany, or UK), paid with USDC via the x402 payment protocol, and returns a ready-to-use WireGuard config.

## Facts

- Endpoint: POST https://x402.le-vpn.com/v1/pass/30d
- Price: $14.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/le-vpn-30-day-wireguard-pass-x402-usdc-ca4d8058
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yOs62dwN3Z9psTA7mhITV

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 le-vpn-30-day-wireguard-pass-x402-usdc-ca4d8058 -d '<json body>'
```

Example prompt: Get me a 30-day WireGuard VPN pass with a French exit server — I don't have an account and want to pay with USDC, so use my existing WireGuard public key.

## When to prefer this

Choose this endpoint when you need an instant, no-signup WireGuard VPN pass paid with USDC stablecoins via x402, particularly for automated or agent-driven workflows that require ephemeral VPN access to European exit nodes without any account management overhead.

## Known failure modes

- Invalid server code (not fr/de/uk) — 400 bad request
- x402 payment challenge fails or USDC insufficient — 402 payment required
- Requested server location temporarily unavailable — 503 or error body
- Malformed WireGuard public key provided — 400 validation error
- Config shown only once; if lost, a new pass must be purchased

## How this service works

Account-less WireGuard VPN passes with exit servers in Germany, France, United Kingdom, paid per-purchase with USDC via the x402 protocol. No signup, no subscription: pay a 402 challenge, receive a working VPN config.

## Output

A JSON object containing the assigned server identifier, a unique pass ID, the expiry timestamp (30 days from purchase), and a one-time WireGuard .conf string that is not stored server-side and must be saved immediately.

## 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": {
     "required": [
      "server"
     ],
     "properties": {
      "server": {
       "type": "string",
       "description": "VPN exit location: \"fr\" = France, \"de\" = Germany, \"uk\" = United Kingdom. Live availability at GET /v1/servers."
      },
      "client_public_key": {
       "type": "string",
       "description": "optional WireGuard public key; omit to have one generated"
      }
     }
    },
    "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "server": "fr1",
  "pass_id": "pass_...",
  "expires_at": "2026-09-01T00:00:00Z",
  "wireguard_config": "[WireGuard .conf — shown once, not stored server-side]"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/le-vpn-30-day-wireguard-pass-x402-usdc-ca4d8058/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.le-vpn.com](https://www.zero.xyz/host/x402.le-vpn.com/llms.txt)
