# TruthPulse Entity Network Mapper

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

Maps relationships and connections between individuals, organizations, and court cases using public records, FOIA releases, and court filings

## Facts

- Endpoint: GET https://truthpulse-five.vercel.app/api/truth/entity-network
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthpulse-entity-network-mapper-b19ffc66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zP1d7YizXHdhkycQHn9dm

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-b19ffc66
```

Example prompt: Can you map all the known connections between Jeffrey Epstein and the organizations or individuals mentioned in FOIA releases and court filings — I want to see the full entity network?

## When to prefer this

Choose this endpoint when you need to understand the web of connections between specific named entities — people, organizations, and court cases — derived from verifiable public sources like FOIA releases and court filings. Prefer it over general web search when you need structured relationship data grounded in legal and governmental documents rather than media coverage.

## Known failure modes

- Entity not found in available public records — returns empty or sparse network
- Ambiguous entity name matching multiple real-world individuals or organizations
- Insufficient public record coverage for the requested entity or time period
- Rate limit or payment failure returning 402 error
- Network too large to return in single response — truncated results

## 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

A structured network of relationships between the queried entities, including individuals, organizations, and court cases, sourced from public records, FOIA releases, and court documents — showing how each entity connects to others in the network.

## Example request

```json
{
 "depth": "extended",
 "subject": "Jeffrey Epstein"
}
```

## 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-b19ffc66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from truthpulse-five.vercel.app](https://www.zero.xyz/host/truthpulse-five.vercel.app/llms.txt)
