# GPT-5.5 x402 Query-Parse Tool

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

Parses URL query strings via a GET request, paid per-call with USDC over x402 on Base at $0.0001 per request.

## Facts

- Endpoint: GET https://gpt55.558686.xyz/v1/tools/query-parse
- Price: $0.0001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gpt-5-5-x402-query-parse-tool-b407d828
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OYPBQHtCxBrEtONGvF9Ba

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 gpt-5-5-x402-query-parse-tool-b407d828
```

Example prompt: Can you parse the query string out of this URL for me: 'https://example.com/search?q=hello+world&lang=en&page=2'? I just need the individual query parameters extracted as key-value pairs.

## When to prefer this

Prefer this endpoint when you need a lightweight, pay-per-call URL query string parser with no subscription overhead, especially when integrating with x402 USDC micropayment workflows on Base and only occasional parsing is needed.

## Known failure modes

- Missing required 'input' field returns validation error
- URL exceeds 2048 character limit returns rejection
- query string exceeds 5000 character limit returns rejection
- Malformed or non-HTTP URL may return parsing error
- Insufficient USDC balance or x402 payment failure blocks the request

## How this service works

Parse a query string or URL into repeated query parameters and first-value maps without calling an upstream model. Pay up to $0.001 per request with x402 USDC on Base. Public paid calls are limited to 1500 input characters and 128 output tokens.

## Output

A JSON object with ok=true, tool='queryParse', a summary of the parsed query string, and the extracted key-value parameters from the provided URL's query component.

## Example request

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

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "additionalProperties": true
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 2048
      },
      "query": {
       "type": "string",
       "maxLength": 5000
      }
     },
     "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
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "tool": "queryParse",
  "summary": "Parse URL query strings using x402 USDC payment"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gpt-5-5-x402-query-parse-tool-b407d828/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)
