# H1DR4 SKYNET Investigation

> H1DR4 SKYNET Investigation is a paid API for AI agents from h1dr4.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Runs an AI-powered open-source intelligence (OSINT) investigation dossier on a target (wallet, domain, handle, email, phone, or natural-language question) and returns enriched findings.

## Facts

- Endpoint: POST https://h1dr4.dev/api/v1/skynet/investigate
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/h1dr4-skynet-investigation-20de0988
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AIUHvplXhAeJIzFIaFitQ

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 h1dr4-skynet-investigation-20de0988 -d '<json body>'
```

Example prompt: Run a full H1DR4 SKYNET investigation dossier on the wallet address 0xAbc123...def456 — this is for a public-interest fraud investigation into suspected rug-pull activity; give me everything you can find, up to 500 enrichment lookups.

## When to prefer this

Use this endpoint when you need a comprehensive, AI-orchestrated OSINT investigation on a specific target — particularly crypto wallets, domains, social handles, emails, or phone numbers — and want enriched, correlated findings rather than a single data lookup. Best suited for public-interest investigations, fraud research, or security analysis where multi-source enrichment and natural-language querying of the target is needed.

## Known failure modes

- Target string too short (minLength 3) or too long (maxLength 10000) returns validation error
- Limit outside allowed range (10–10000) returns parameter error
- Missing or invalid request field returns 400-style error
- Payment not processed or insufficient USDC balance returns 402 Payment Required
- Invalid case_id returns not-found or context error
- Rate limiting or abuse detection may block repeated calls on same target

## How this service works

H1DR4 SKYNET investigation dossier. Paid per target. Public-interest investigation use only.

## Output

A structured investigation dossier containing enriched intelligence about the target, potentially including associated identities, domains, addresses, blockchain activity, social handles, and correlated data points gathered via OSINT tooling. If debug mode is enabled, compact raw tool result summaries are also included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lang": {
   "type": "string",
   "default": "en",
   "description": "Optional output language code."
  },
  "limit": {
   "type": "number",
   "default": 100,
   "maximum": 10000,
   "minimum": 10,
   "description": "Optional H1DR4 Lookup limit if the enrichment tool is used."
  },
  "case_id": {
   "type": "string",
   "description": "Optional H1DR4 case id to orient the investigation."
  },
  "purpose": {
   "type": "string",
   "description": "Optional operator note describing the public-interest purpose."
  },
  "request": {
   "type": "string",
   "maxLength": 10000,
   "minLength": 3,
   "description": "Natural-language target, clue, wallet, domain, handle, email, phone, or investigative question."
  },
  "include_raw_tool_results": {
   "type": "boolean",
   "default": false,
   "description": "Optional debug flag that returns compact tool result summaries."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/h1dr4-skynet-investigation-20de0988/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from h1dr4.dev](https://www.zero.xyz/host/h1dr4.dev/llms.txt)
