# OSINT Graph — grokzilla.shop

> OSINT Graph — grokzilla.shop 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).

Builds an open-source intelligence (OSINT) relationship graph from a given target input via a paid microservice endpoint.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/osint-graph
- 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/osint-graph-grokzilla-shop-21e14a73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-vHUc12bQzDel2BNnW6LW

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 osint-graph-grokzilla-shop-21e14a73 -d '<json body>'
```

Example prompt: Can you run an OSINT graph investigation on the domain 'example.com' and map out all the connected entities and relationships you can find?

## When to prefer this

Choose this endpoint when you need automated, agent-callable OSINT relationship graphing paid per-call at $0.01 USDC with no human-in-the-loop — ideal for AI agents conducting digital investigations, threat intelligence workflows, or identity correlation tasks that need structured graph output at low per-query cost.

## Known failure modes

- Missing required 'input.type' or 'input.method' fields returns a validation error
- Payment not attached or insufficient USDC balance causes a 402 Payment Required response
- Invalid or unsupported target type may return an empty graph or error
- Network timeout if the OSINT data sources are slow to respond
- Malformed body schema results in a 400 Bad Request

## How this service works

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

## Output

Returns a JSON object confirming the call succeeded and the graph path, along with OSINT relationship data mapping connections between the queried entity and related identifiers, domains, accounts, or other intelligence nodes.

## 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/osint-graph"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/osint-graph-grokzilla-shop-21e14a73/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)
