# KiHustle URL Query Builder

> KiHustle URL Query Builder is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Builds a URL with query parameters appended to a given base URL

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/url-query-builder
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-url-query-builder-4535191c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r07u68ES8Wq-_pJ-4VF2T

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 kihustle-url-query-builder-4535191c -d '<json body>'
```

Example prompt: Take the base URL 'https://example.com/search' and append query parameters like 'q=AI+tools' and 'page=2' into a properly formatted URL I can use in a request.

## When to prefer this

Use this endpoint when you need a simple, paid-per-call utility to programmatically append query parameters to a base URL without writing custom encoding logic. Suitable when you want a reliable, consistent URL construction service within an automated workflow, especially if you are already using x402 micropayment-enabled services.

## Known failure modes

- Missing or malformed base_url returns an error status
- Invalid or non-serializable params object may cause processing failure
- Malformed URL base (e.g. missing protocol) may result in an invalid output URL
- Network timeouts or service unavailability return no result

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field containing the fully constructed URL string (base URL plus encoded query parameters) and a 'status' field indicating success or failure of the construction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "params": {
   "type": "object"
  },
  "base_url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kihustle-url-query-builder-4535191c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
