# URL Parse Tool – GPT-5.5 x402 Gateway

> URL Parse Tool – GPT-5.5 x402 Gateway is a paid API for AI agents from gpt55.558686.xyz, paid per call via x402, $0.0001/call, status down (last checked 2026-09-15).

Parses a URL into its component parts (scheme, host, path, query, etc.) via a micropayment-gated HTTP GET endpoint using x402 USDC on Base.

## Facts

- Endpoint: GET https://gpt55.558686.xyz/v1/tools/url-parse
- Price: $0.0001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/url-parse-tool-gpt-5-5-x402-gateway-8f4f1d94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wgMXUCGlqCrUnsmh2JMGo

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-parse-tool-gpt-5-5-x402-gateway-8f4f1d94
```

Example prompt: Can you parse this URL for me and tell me its individual components — scheme, host, path, and query parameters: https://example.com/search?q=hello&page=2#results

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.0001 USDC) URL decomposition without setting up a local parser, particularly in agentic workflows on Base where x402 micropayments are already available. Prefer over heavier LLM-based extraction when deterministic URL parsing is sufficient.

## Known failure modes

- Missing or empty 'url' query parameter returns validation error
- URL exceeds 2048 character limit returns schema error
- Malformed or non-HTTP URL may return parse error or empty fields
- Payment failure (insufficient USDC balance or x402 protocol error) blocks the request
- Network timeout to the gateway returns 5xx error

## How this service works

Parse an absolute URL into protocol, host, path, query parameters, hash, and origin without fetching the URL or calling an upstream model. GET variant for agents, crawlers, and wallets that prefer query parameters over a JSON body. Pay up to $0.0001 per request with x402 USDC on Base.

## Output

Returns a JSON object with ok status, tool name ('urlParse'), a summary string, and structured breakdown of URL components including scheme, host, path, query parameters, port, and fragment extracted from the input URL.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://example.com/search?q=artificial+intelligence&page=2"
  }
 }
}
```

## 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": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 2048,
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "tool": {
       "type": "string"
      },
      "fetchedAt": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/url-parse-tool-gpt-5-5-x402-gateway-8f4f1d94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gpt55.558686.xyz](https://www.zero.xyz/host/gpt55.558686.xyz/llms.txt)
