# Bolt URL Parse

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

Parses and extracts structured data components from a given URL string

## Facts

- Endpoint: POST https://deltadata.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-8e110ce9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a5wBhCQEUf_XqiyB9VMsJ

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-8e110ce9 -d '<json body>'
```

Example prompt: Can you parse this URL for me and break it down into its components — https://shop.example.com/products?category=shoes&color=blue — I want to know the hostname, path, and all the query parameters separately.

## When to prefer this

Use this endpoint when you need to programmatically decompose a URL string into its constituent parts (protocol, host, path, query params, etc.) without writing custom parsing logic. Prefer this over manual string splitting when you need reliable, structured output from arbitrary URL strings.

## Known failure modes

- Invalid or malformed URL input returns an error or success:false
- Missing required 'url' field causes a 400-level error
- Relative URLs without a scheme may fail to parse correctly
- Non-string input for url field may cause validation failure

## 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 provided URL, such as protocol, hostname, pathname, and query parameters extracted into structured fields.

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