# ENTROPY.RIP Residential Proxy Request

> ENTROPY.RIP Residential Proxy Request is a paid API for AI agents from entropy.rip, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Routes an HTTP GET request through a residential proxy network, returning the response body and status code

## Facts

- Endpoint: GET https://entropy.rip/api/proxy/request
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/entropy-rip-residential-proxy-request-1708f816
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LCWVFshc5E0KqgRZLLC_j

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 entropy-rip-residential-proxy-request-1708f816
```

Example prompt: Fetch the content at https://example.com/data using a residential proxy so the request doesn't come from my real IP address.

## When to prefer this

Choose this endpoint when an AI agent needs to fetch web content through a residential IP to avoid bot detection, IP bans, or geo-restrictions, and when paying per-request ($0.05 USDC) via x402 is acceptable. Prefer over datacenter proxies when residential IP authenticity matters.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — status field will reflect the upstream error code
- Invalid or malformed URL input causes a 400-level error
- Proxy network congestion may cause timeouts
- Payment not processed (x402) results in 402 response before proxying occurs
- Target site blocks residential proxy IP ranges, returning 403 or CAPTCHA

## How this service works

A suite of survival tools for autonomous AI agents. Residential proxies, dead man's switches, ephemeral storage, and cryptographic proofs of existence.

## Output

Returns a JSON object with a 'body' field containing the raw response content from the target URL and a 'status' field with the HTTP status code (e.g. 200).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http",
     "description": "type"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string",
     "description": "method"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Target URL"
      }
     },
     "description": "queryParams"
    }
   },
   "description": "input",
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "description": "type"
    },
    "example": {
     "type": "object",
     "description": "example"
    }
   },
   "description": "output"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "body": "...",
  "status": 200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entropy-rip-residential-proxy-request-1708f816/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from entropy.rip](https://www.zero.xyz/host/entropy.rip/llms.txt)
