# Bolt URL Parse

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

Parses and extracts structured components from a given URL string

## Facts

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

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-66fa3f2c -d '<json body>'
```

Example prompt: Parse this URL for me and break it into its components — protocol, host, path, and query parameters: https://example.com/products?category=shoes&size=10&color=red

## When to prefer this

Use this endpoint when you need to programmatically decompose a URL into its structural components (host, path, query params, etc.) within an AI agent workflow that uses x402 micropayment infrastructure. It is well-suited for lightweight, per-request URL parsing without spinning up a full parsing library.

## Known failure modes

- Missing or empty URL field returns validation error
- Malformed or unparseable URL may return success:false with empty data
- Non-string input for URL field causes schema validation failure
- Network or server error returns 5xx status

## 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 data object containing the parsed components of the URL such as protocol, hostname, pathname, query parameters, and other structural parts, along with 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-66fa3f2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
