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

Calculates customer acquisition cost (CAC) by dividing total sales and marketing costs by the number of new customers acquired

## Facts

- Endpoint: POST https://kihustle.tech/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-34a6a6d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rgs-Ub61dTeomjHiazarF

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-34a6a6d5 -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 acquired 50 new customers.

## When to prefer this

Choose this endpoint when you need a quick, programmatic calculation of customer acquisition cost using raw spend and customer count figures — especially suited for solo operators, side hustlers, or small digital businesses that want to automate CAC tracking without a full analytics platform.

## Known failure modes

- Missing required fields (sales_costs, marketing_costs, or new_customers) may result in a processing error
- Passing zero for new_customers would cause a division-by-zero scenario
- Non-numeric values for cost fields may be rejected
- Negative values for costs or customer counts may produce unexpected results

## 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 indicating the computed or processed outcome and a 'status' field confirming success. The actual CAC value is derived from (sales_costs + marketing_costs) / new_customers based on the inputs provided.

## 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-34a6a6d5/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)
