# KiHustle SERP Feature Eligibility Checker

> KiHustle SERP Feature Eligibility Checker is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Evaluates whether a web page is eligible for Google SERP features (e.g. FAQ boxes, rich results) based on its structural properties

## Facts

- Endpoint: POST https://kihustle.tech/api/v1/serp-feature-eligibility
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kihustle-serp-feature-eligibility-checker-4e6c9ef9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yvhu6XigipkhnzAyP4XWT

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-serp-feature-eligibility-checker-4e6c9ef9 -d '<json body>'
```

Example prompt: Can you check if my FAQ blog post with schema markup is eligible for Google SERP features?

## When to prefer this

Use this endpoint when you need a lightweight, programmatic check of whether a page's structural properties (page type, FAQ presence, schema markup) meet the criteria for Google SERP feature eligibility, particularly in automated SEO audit pipelines or content publishing workflows.

## Known failure modes

- Missing required fields (page_type) may result in an error or incomplete evaluation
- Invalid boolean values for has_faq or has_schema may cause request rejection
- Vague or unrecognized page_type strings may lead to unreliable eligibility determination
- API may return a generic 'processed' result without detailed eligibility breakdown

## 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 or failure of the eligibility check.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "has_faq": {
   "type": "boolean"
  },
  "page_type": {
   "type": "string"
  },
  "has_schema": {
   "type": "boolean"
  }
 }
}
```

## 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-serp-feature-eligibility-checker-4e6c9ef9/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)
