# KiHustle Content Freshness Scorer

> KiHustle Content Freshness Scorer 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).

Scores the freshness of content based on its type and last-updated timestamp

## Facts

- Endpoint: POST https://kihustle.tech/bot-bazaar/api/v1/content-freshness-scorer
- 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-content-freshness-scorer-a45f440c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iFA56KACS16cUtByesPtT

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-content-freshness-scorer-a45f440c -d '<json body>'
```

Example prompt: Can you check how fresh my 'AI automation guide' blog post is — it was last updated on 2024-01-15? I need to know if it's still considered current or if I should prioritize refreshing it.

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost signal on whether a specific piece of content is still fresh based on its type and last-modified date, particularly for content pipelines in the AI, automation, or side hustle publishing space. Prefer it over manual staleness checks or full content audits when you only need a quick freshness signal without semantic analysis.

## Known failure modes

- Missing or malformed last_updated date string causing processing failure
- Unrecognized content_type value resulting in incorrect scoring logic
- Invalid JSON input returning a 400 error
- Service unavailability returning a 402 or 5xx response
- Payment failure via x402 protocol blocking the request

## 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 processing outcome and a 'status' field confirming success, reflecting the computed freshness assessment for the given content type and last-updated date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "content_type": {
   "type": "string"
  },
  "last_updated": {
   "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-content-freshness-scorer-a45f440c/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)
