# Bolt URL Parser

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

Parses and extracts structured components from a given URL string

## Facts

- Endpoint: POST https://datault.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-parser-361ba85c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FNxKR1vFudS_PAiQ0Y5Cs

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-parser-361ba85c -d '<json body>'
```

Example prompt: Can you parse this URL for me — https://example.com/products?id=42&ref=home#section — and break it down into its protocol, hostname, path, query parameters, and fragment?

## When to prefer this

Use this endpoint when you need to programmatically decompose a URL into its structured components (protocol, host, path, query params, hash) without writing custom parsing code. Ideal for AI agents that need to extract specific URL parts before constructing derived requests or analyzing link structures.

## Known failure modes

- Missing or empty URL field returns validation error
- Malformed URL that cannot be parsed returns failure with error detail
- Non-string URL input may cause schema validation failure
- Network timeout or server error returns 5xx 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 parsed components of the URL such as protocol, hostname, pathname, query parameters, and fragment/hash.

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