# 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-13).

Constructs a URL with query parameters appended to a base URL by combining a base URL with a params object

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/url-query-builder
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-url-query-builder-58138cec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YqTNaG9YreayI_KyjIweD

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-58138cec -d '<json body>'
```

Example prompt: Can you build me a URL from 'https://example.com/search' with these query params: category=ai, sort=newest, and page=2?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call utility to programmatically combine a base URL with a set of query parameters without implementing URL encoding logic yourself. It is suitable for agents building dynamic URLs for API calls, affiliate links, or search queries on the fly.

## Known failure modes

- Invalid or malformed base_url returns an error status
- Missing required base_url field causes a bad request response
- Non-object params value may result in processing failure
- Network or server-side error returns a non-success status

## 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

A JSON object containing a 'result' field with the fully constructed URL including the query string, and a 'status' field indicating success or failure of the operation.

## 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-58138cec/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)
