# KiHustle Currency Formatter

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

Formats a numeric amount as a locale-aware currency string for a given currency code

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/currency-formatter
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-currency-formatter-64d3e3df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7uC-rtBYt7Eoo4kI5arVP

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-currency-formatter-64d3e3df -d '<json body>'
```

Example prompt: Can you format 1299.99 as USD using the en-US locale so I can display it properly on the checkout page?

## When to prefer this

Use this endpoint when you need server-side, locale-aware currency formatting and do not want to rely on client-side Intl.NumberFormat. Suitable for agents building invoices, dashboards, or e-commerce displays that need consistent, locale-correct currency strings across multiple currencies and regions. Prefer this over manual string construction when correctness of thousands separators, decimal symbols, and currency symbols for international locales is important.

## Known failure modes

- Invalid or unsupported locale code returns an error or unexpected formatting
- Unsupported currency code may produce an error or fallback output
- Missing required fields (amount, locale, currency) may result in a 400-level error
- Non-numeric amount values will likely be rejected
- Very large or very small numbers may not format as expected for some locales

## 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 formatted currency string and a 'status' field indicating success, e.g. {"result":"$1,299.99","status":"success"}

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "number"
  },
  "locale": {
   "type": "string"
  },
  "currency": {
   "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-currency-formatter-64d3e3df/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)
