# Bolt URL Parse

> Bolt URL Parse is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Parses a URL string into its constituent components (scheme, host, path, query, fragment, etc.)

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/url-parse
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-url-parse-3f20e059
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VR5JGt1xdDUFAY6BDJQfC

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 bolt-url-parse-3f20e059 -d '<json body>'
```

Example prompt: Can you parse this URL for me — https://example.com/products?category=shoes&size=10#results — and tell me its scheme, host, path, and query parameters?

## When to prefer this

Use this endpoint when you need to programmatically decompose a URL string into its parts (host, path, query params, fragment) without writing custom parsing logic. Prefer this over regex-based parsing or manual string splitting when reliability and structured output are required.

## Known failure modes

- Missing or empty 'url' field returns an error
- Malformed or non-URL string may return success:false or empty component fields
- Relative URLs without a scheme may fail to parse correctly
- Extremely long URLs may be rejected

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'data' field containing the parsed URL components (scheme, host, path, query parameters, fragment, port, etc.) and a 'success' boolean indicating whether parsing succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-url-parse-3f20e059/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
