# ScriptMasterLabs ACP x402 Web Fetch

> ScriptMasterLabs ACP x402 Web Fetch is a paid API for AI agents from acp-x402-scriptmasterlabs.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches the content of any public HTTP URL as a pay-per-call proxied web request, settled in USDC on Base via x402

## Facts

- Endpoint: GET https://acp-x402-scriptmasterlabs.onrender.com/x402/web-fetch
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-acp-x402-web-fetch-58cf7763
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VeA8uHWuPv5QNFvbO3R4r

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 scriptmasterlabs-acp-x402-web-fetch-58cf7763
```

Example prompt: Can you fetch the live ping response from CoinGecko's API at https://api.coingecko.com/api/v3/ping using the ScriptMasterLabs web-fetch proxy with a GET request?

## When to prefer this

Choose this endpoint when you need to fetch content from a public HTTP URL in a micropayment-native, x402-compatible context — especially when working in agentic pipelines that settle payments in USDC on Base. Useful for accessing public crypto, RWA, SEC, or federal data APIs through a single pay-per-call proxy without managing your own HTTP client or API keys for those services.

## Known failure modes

- Target URL is unreachable or returns an error (5xx/4xx from the remote server)
- Invalid or malformed URL provided in queryParams.url
- x402 payment not settled or insufficient USDC balance causing 402 response
- Target URL blocks proxy/server IP (rate limiting or geo-restriction)
- Timeout if remote URL is slow to respond
- Missing required 'type' or 'method' fields in the input object

## How this service works

Pay-per-call crypto, RWA, federal, SEC, and compliance APIs. Settled in USDC on Base via x402. Hyphen routes only (e.g. /x402/rwa-aggregates, /x402/gas-tracker).

## Output

The raw HTTP response body returned by the target URL, proxied through ScriptMasterLabs' x402-gated endpoint. The response content depends entirely on the target URL — it could be JSON, HTML, plain text, or other content types returned by the remote server.

## 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"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "example": "https://api.coingecko.com/api/v3/ping"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-acp-x402-web-fetch-58cf7763/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from acp-x402-scriptmasterlabs.onrender.com](https://www.zero.xyz/host/acp-x402-scriptmasterlabs.onrender.com/llms.txt)
