# Grokzilla AI Detector

> Grokzilla AI Detector is a paid API for AI agents from grokzilla.shop, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Detects whether a given piece of text or content was generated by AI, returning a classification result via a pay-per-call microservice.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/ai-detector
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grokzilla-ai-detector-12b1f104
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aWgfMCYPsN_QAhrnd2Q8j

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 grokzilla-ai-detector-12b1f104 -d '<json body>'
```

Example prompt: Can you check if this article text was written by AI or a human? Here's the content: 'The rapid advancement of renewable energy technologies has fundamentally altered the global energy landscape...'

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call AI content detection microservice with no subscription commitment, particularly inside autonomous agent workflows that require machine-to-machine payment via x402/USDC. Ideal for pipelines where cost-per-check needs to be tightly controlled at $0.01 per call.

## Known failure modes

- Missing required 'input' field returns validation error
- Malformed request body causes 400-level error
- Payment not included or rejected results in 402 Payment Required response
- Empty or null content body may return indeterminate result
- Network timeout if content is excessively large

## How this service works

Agent-ready microservices with x402 + Stripe rails, volume primitives, tutorials, and applet UI.

## Output

Returns a JSON object with an 'ok' boolean indicating success and the endpoint path, along with AI detection classification results indicating whether the submitted content is AI-generated or human-written.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "path": {
     "type": "string"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "path": "/api/skills/ai-detector"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grokzilla-ai-detector-12b1f104/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grokzilla.shop](https://www.zero.xyz/host/grokzilla.shop/llms.txt)
