# TruthPulse Entity Network Mapper

> TruthPulse Entity Network Mapper is a paid API for AI agents from truthpulse.theaslangroupllc.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Maps connections between individuals, organizations, and court cases using public records, FOIA releases, and court filings for OSINT investigations.

## Facts

- Endpoint: GET https://truthpulse.theaslangroupllc.com/api/truth/entity-network
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthpulse-entity-network-mapper-4ab542dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zksIPL7J8W_21tx0ospcb

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 truthpulse-entity-network-mapper-4ab542dc
```

Example prompt: Can you map out the connections between John Smith and Acme Corp — I want to see any relationships documented in court filings, FOIA releases, or public records, including linked individuals and organizations?

## When to prefer this

Choose this endpoint when you need to map relationship networks between named entities (people, organizations, court cases) using public records and FOIA-sourced data, especially for OSINT investigations, journalistic research, or legal due diligence. Prefer this over general web search when you need structured, source-cited connection graphs rather than unstructured narrative results.

## Known failure modes

- Entity not found in public records — returns empty network or 404
- Ambiguous entity name matches multiple records — may return partial or conflicting data
- FOIA source data unavailable or redacted — connection may be incomplete
- Rate limit or payment failure — returns 402 or 429 error
- Malformed entity query — returns 400 bad request

## How this service works

Entity connection mapping for OSINT and investigator agents. Documents relationships between individuals, organizations, and court cases using public records, FOIA releases, and court filings.

## Output

Returns a structured entity network graph showing relationships between queried individuals, organizations, and court cases, with sourced links to public records, FOIA releases, and court filings that document each connection.

## 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": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | pt | it | nl | ko | zh | ar (default: en)"
      },
      "depth": {
       "type": "string",
       "description": "direct | extended (default: direct)"
      },
      "include": {
       "type": "string",
       "description": "individuals | organizations | cases | all (default: all)"
      },
      "subject": {
       "type": "string",
       "description": "person or organization name — e.g. \"Jeffrey Epstein\" | \"Harvey Weinstein\" | \"HSBC\" (required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "subject": "Jeffrey Epstein",
  "court_cases": [
   {
    "case": "USA v. Ghislaine Maxwell",
    "court": "SDNY",
    "outcome": "Guilty — sentenced 20 years 2022"
   },
   {
    "case": "Giuffre v. Maxwell",
    "court": "SDNY",
    "outcome": "Settled 2017"
   }
  ],
  "sources_note": "All connections documented from public court records, FOIA releases, and civil litigation filings",
  "organizations": [
   {
    "name": "Epstein Island (Little St. James)",
    "type": "property",
    "significance": "Location named in civil suits and Maxwell trial"
   },
   {
    "name": "J. Epstein & Company",
    "type": "financial",
    "significance": "Registered investment adviser, clients unknown"
   }
  ],
  "direct_connections": [
   {
    "name": "Ghislaine Maxwell",
    "relationship": "Co-conspirator — convicted 2021 on 5 counts",
    "documented_by": "SDNY court record"
   },
   {
    "name": "Alan Dershowitz",
    "relationship": "Attorney — denied in civil deposition",
    "documented_by": "VA v. Epstein deposition"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truthpulse-entity-network-mapper-4ab542dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from truthpulse.theaslangroupllc.com](https://www.zero.xyz/host/truthpulse.theaslangroupllc.com/llms.txt)
