# URL Normalize

> URL Normalize is a paid API for AI agents from grokzilla.shop, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Normalizes and canonicalizes a URL via an HTTP-based microservice endpoint, returning a standardized path representation.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/url-normalize
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/url-normalize-11c68003
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-FulnlIGEL_4Off2fZ3jf

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 url-normalize-11c68003 -d '<json body>'
```

Example prompt: Can you normalize this URL for me — take 'HTTP://Example.COM/some/path/?foo=bar' and return the canonical, standardized version using the url-normalize skill?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call URL normalization microservice without standing up your own infrastructure. It is ideal for AI agents in automated pipelines that need to canonicalize URLs on demand at low cost ($0.005 USDC per call) and can handle x402 micropayment rails natively.

## Known failure modes

- Missing required 'input' field returns a validation error
- Invalid HTTP method type may cause a 400 or schema mismatch error
- Malformed URL input may return ok: false or an error message
- Payment failure via x402/Stripe rails results in 402 Payment Required before processing
- Network timeout if the microservice is unavailable

## How this service works

Agent-ready microservices with x402 + Stripe rails, volume primitives, tutorials, and applet UI.

## Output

Returns a JSON object with an 'ok' boolean indicating success and a 'path' field containing the normalized, canonical URL path (e.g. {"ok": true, "path": "/api/skills/url-normalize"}).

## 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": {
    "body": {
     "type": "object"
    },
    "path": {
     "type": "string"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "path": "/api/skills/url-normalize"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/url-normalize-11c68003/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grokzilla.shop](https://www.zero.xyz/host/grokzilla.shop/llms.txt)
