# Le VPN – Buy 7-Day WireGuard VPN Pass (x402/USDC)

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

Issues a 7-day WireGuard VPN configuration for a chosen exit country (France, Germany, or UK), paid instantly with USDC via the x402 payment protocol — no account required.

## Facts

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

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-buy-7-day-wireguard-vpn-pass-x402-usdc-fbbf9dbe -d '<json body>'
```

Example prompt: Get me a 7-day WireGuard VPN pass with a French exit server — I want to pay with USDC and don't want to create an account.

## When to prefer this

Choose this endpoint when you need a no-registration, no-subscription WireGuard VPN credential provisioned instantly for exactly 7 days, paid with USDC via the x402 protocol. It is ideal for agents, automation pipelines, or privacy-conscious users who want programmatic VPN access without identity exposure. Prefer it over traditional VPN APIs when the use case demands crypto-native payment, single-use credentials, or account-free provisioning. If you need a different duration, check sibling endpoints on x402.le-vpn.com.

## Known failure modes

- Payment challenge not satisfied — 402 response returned if USDC payment via x402 is not completed correctly
- Invalid server code — returns error if 'server' field is not one of 'fr', 'de', or 'uk'
- Server unavailable — requested exit location may be temporarily offline (check GET /v1/servers for live availability)
- Invalid public key format — if a client_public_key is supplied but malformed, provisioning will fail
- Config shown only once — if the response is lost, the pass cannot be re-retrieved; a new purchase is required

## 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

Returns a JSON object containing the assigned server name (e.g. 'fr1'), a unique pass_id, an expiry timestamp (7 days from purchase), and a fully formed WireGuard .conf file shown exactly once and not stored server-side. The config can be imported directly into any WireGuard client.

## 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-buy-7-day-wireguard-vpn-pass-x402-usdc-fbbf9dbe/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)
