# x402socks Paid Proxy Access

> x402socks Paid Proxy Access is a paid API for AI agents from payments.x402socks.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Creates a one-time proxy access account for x402socks after verifying and settling an exact EVM-based USDC payment.

## Facts

- Endpoint: POST https://payments.x402socks.com/v1/access
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402socks-paid-proxy-access-05c4623d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SXUcjyXKc_i6_zxYQkZCZ

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 x402socks-paid-proxy-access-05c4623d -d '<json body>'
```

Example prompt: I need a one-time x402socks proxy access account — go ahead and pay the 1 USDC fee using my EVM wallet and get me the credentials.

## When to prefer this

Choose this endpoint when an agent needs to programmatically acquire a fresh, one-time SOCKS proxy access account and is able to make an EVM-based USDC payment. It is ideal for agentic workflows that need ephemeral, pay-per-use proxy access without long-term subscriptions or traditional API keys.

## Known failure modes

- Payment amount mismatch — exact USDC amount not sent, resulting in access denial
- EVM transaction not yet settled — payment unconfirmed on-chain at time of request
- Invalid or missing payment proof in request headers
- Internal error provisioning the proxy account after valid payment
- Rate limiting or duplicate payment detection rejecting replay attempts

## How this service works

Create a one-time x402socks proxy access account after an exact EVM payment is verified and settled. Pricing comes from the deployed package catalog; an explicitly configured TEST_PRICE_USDC is used only when TESTING=true.

## Output

A JSON object containing success: true along with any generated proxy account credentials or access token, confirming that the EVM payment was verified and a one-time proxy access account was successfully created.

## 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",
     "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402socks-paid-proxy-access-05c4623d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payments.x402socks.com](https://www.zero.xyz/host/payments.x402socks.com/llms.txt)
