# Bolt URL Parse

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

Parses a URL and extracts its structured components (protocol, host, path, query parameters, fragments, etc.)

## Facts

- Endpoint: POST https://v0-bolt.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-1cbd5193
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T0IkTJHEZ74LjtP7QhT02

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-1cbd5193 -d '<json body>'
```

Example prompt: Can you parse this URL for me — https://shop.example.com/products?category=shoes&sort=price#results — and tell me what the hostname, path, and query parameters are?

## When to prefer this

Use this endpoint when you need to programmatically decompose a URL into its structural parts — especially query parameters, host, path, and fragment — without writing custom parsing logic. Prefer this over regex hacks or manual string splitting when accuracy and reliability matter.

## Known failure modes

- Invalid or malformed URL string provided — may return success: false or an error in the data field
- Missing required 'url' field in request body — returns a validation error
- URL with unsupported or exotic schemes may not parse correctly
- Empty string input may result in a failed parse response

## 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 success boolean and a data object containing the structured components of the URL, such as protocol, hostname, pathname, search/query parameters, and hash fragment.

## 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-1cbd5193/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v0-bolt.orbonomy.xyz](https://www.zero.xyz/host/v0-bolt.orbonomy.xyz/llms.txt)
