# Le VPN – 1-Day WireGuard Pass via x402 (USDC)

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

Purchases a single-day accountless WireGuard VPN pass with a chosen exit server (France, Germany, or UK) paid in USDC via the x402 micropayment protocol, returning a ready-to-use WireGuard config.

## Facts

- Endpoint: POST https://x402.le-vpn.com/v1/pass/1d
- Price: $1.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-1-day-wireguard-pass-via-x402-usdc-9f200dad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EyfXyJTOwvixr-kdKI7Yz

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-1-day-wireguard-pass-via-x402-usdc-9f200dad -d '<json body>'
```

Example prompt: Get me a 1-day Le VPN WireGuard pass with a French exit server — I don't have my own WireGuard key so let them generate one.

## When to prefer this

Choose this endpoint when you need a short-lived, accountless WireGuard VPN config for a specific European country (France, Germany, UK) and want to pay per-use in USDC with no registration or subscription. Ideal for one-off privacy needs, geo-unblocking for a day, or automated agent workflows that need an ephemeral EU IP address. Prefer over subscription VPN APIs when no persistent identity or billing relationship is desired.

## Known failure modes

- Payment challenge not fulfilled (x402 payment missing or invalid USDC amount) — pass not created
- Invalid server location value (not 'fr', 'de', or 'uk') — 400 validation error
- Malformed WireGuard public key provided — 400 validation error
- Selected exit server temporarily unavailable — check GET /v1/servers for live availability
- Network timeout during provisioning — pass may not be created, retry required
- Config lost if not captured immediately — server does not store or re-issue it

## 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, an expiry timestamp (24 hours from purchase), and the full WireGuard .conf file as a string. The config is shown only once and not stored server-side, so the agent must capture and deliver it 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-1-day-wireguard-pass-via-x402-usdc-9f200dad/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)
