# 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 date, returning a freshness assessment result

## Facts

- Endpoint: POST https://kihustle.tech/agents/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-852bd636
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ksAToe-rc6Os-wepPMxRm

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-852bd636 -d '<json body>'
```

Example prompt: Can you score the freshness of my 'guide' article that was last updated on 2023-08-15 and tell me if it's still considered current?

## When to prefer this

Use this endpoint when you need a quick, automated freshness signal for a piece of content given only its type and last-updated timestamp — particularly useful in content auditing pipelines, SEO triage workflows, or automated publishing systems that need to flag stale material without manual review.

## Known failure modes

- Missing or malformed 'last_updated' date string may cause processing errors
- Unsupported content_type values may result in a generic or failed score
- Ambiguous date formats could produce incorrect freshness calculations
- Payment failure (x402) will block the call before processing begins

## 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 (e.g. 'processed') and a 'status' field (e.g. 'success'), indicating whether the freshness computation completed and implicitly conveying the scored freshness state of the submitted content.

## 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-852bd636/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)
