# KiHustle Customer Acquisition Cost Calculator

> KiHustle Customer Acquisition Cost Calculator 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).

Computes Customer Acquisition Cost (CAC) by dividing total sales and marketing costs by the number of new customers acquired

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/customer-acquisition-cost
- 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-customer-acquisition-cost-calculator-61e3d4d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V6f3VJPguB4sLDiqdT0z3

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-customer-acquisition-cost-calculator-61e3d4d4 -d '<json body>'
```

Example prompt: Can you calculate my customer acquisition cost? I spent $3,200 on marketing and $800 on sales efforts last month, and we brought in 150 new customers.

## When to prefer this

Choose this endpoint when you need a quick, on-demand CAC computation within an automated workflow or agent pipeline without building the formula yourself — especially useful for solo entrepreneurs and side-hustle operators who want instant metric calculations without a full analytics platform.

## Known failure modes

- new_customers is zero causing division-by-zero error
- missing required fields (sales_costs, marketing_costs, or new_customers) return error
- negative cost values may produce unexpected results
- non-integer value for new_customers may be rejected
- payment failure via x402 protocol prevents call from completing

## 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 computed Customer Acquisition Cost value (total of sales_costs and marketing_costs divided by new_customers) and a 'status' field indicating success.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sales_costs": {
   "type": "number"
  },
  "new_customers": {
   "type": "integer"
  },
  "marketing_costs": {
   "type": "number"
  }
 }
}
```

## 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-customer-acquisition-cost-calculator-61e3d4d4/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)
