# KiHustle Robots Rule Checker

> KiHustle Robots Rule 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-13).

Checks whether a given URL path is allowed or disallowed according to provided robots.txt rules

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/robots-rule-checker
- 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-robots-rule-checker-68e1446b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eoAGzTckk8V8MYjJgG_Aq

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-robots-rule-checker-68e1446b -d '<json body>'
```

Example prompt: Can you check whether the path '/blog/private-article' is allowed under these robots.txt rules: 'User-agent: * Disallow: /blog/private-'?

## When to prefer this

Use this endpoint when you need a lightweight, per-call check of whether a specific URL path is permitted by given robots.txt rules — particularly useful in automated crawling pipelines, SEO audits, or scraping agents that need to verify compliance before fetching a page. Prefer this over manual parsing when you want a fast, programmatic answer without implementing your own robots.txt parser.

## Known failure modes

- Malformed robots.txt rules string may produce unexpected results
- Missing url_path or robots_rules fields may cause a validation error
- Ambiguous or conflicting robots.txt directives may yield inconsistent results
- Empty input fields may return an error or undefined behavior

## 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 whether the URL path is allowed or disallowed under the provided robots.txt rules, and a 'status' field confirming successful processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url_path": {
   "type": "string"
  },
  "robots_rules": {
   "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-robots-rule-checker-68e1446b/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)
