# TruthPulse FOIA Release Search

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

Searches declassified documents and public records released via FOIA/FOI requests across the US, UK, Canada, Australia, and other countries

## Facts

- Endpoint: GET https://truthpulse-five.vercel.app/api/truth/foia-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthpulse-foia-release-search-d4a85360
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G-m0WgRJfsGGCaus9c1hd

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-foia-release-search-d4a85360
```

Example prompt: Search TruthPulse for FOIA releases and declassified documents about the FBI's surveillance of civil rights organizations — look across US, UK, and Canada.

## When to prefer this

Use this endpoint when you need to find already-released and declassified FOIA documents on a topic across multiple countries simultaneously, rather than filing a new FOIA request or searching a single agency's vault. Ideal for investigative research, journalism, or historical fact-checking where existing public record releases are the target.

## Known failure modes

- No matching documents found for obscure or narrow topics
- Rate limiting or payment failure returning 402
- Query too vague returning broad or irrelevant results
- Documents indexed may be outdated if the index isn't refreshed frequently
- Some agencies' releases may not be indexed if not yet crawled

## How this service works

Primary-source intelligence for FOIA releases, declassified archives, court records, forensic evidence, UAP disclosures, and conspiracy theory evidence briefs. Evidence-first. No spin. Global. All endpoints require x402 payment (USDC on Base mainnet) via the PAYMENT-SIGNATURE header.

## Output

Returns a list of matching declassified documents and FOIA releases, including document titles, source agencies, countries of origin, release dates, and links or summaries of the relevant public records on the queried topic.

## 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)"
      },
      "topic": {
       "type": "string",
       "description": "JFK assassination | MKUltra | Epstein | UFO | Operation Paperclip | any subject (required)"
      },
      "agency": {
       "type": "string",
       "description": "FBI | CIA | NSA | DEA | DOJ | DHS | all (default: all)"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | AU | all (default: US)"
      }
     }
    }
   },
   "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": {
  "topic": "MKUltra",
  "country": "US",
  "summary": "CIA mind-control program documented in 1977 FOIA releases...",
  "time_span": "1953–1973",
  "top_records": [
   {
    "url": "https://www.cia.gov/readingroom/...",
    "date": "1977-08-03",
    "title": "MKUltra Subproject 68 — Dr. Ewen Cameron",
    "source": "CIA Reading Room"
   },
   {
    "url": "",
    "date": "1977-09-21",
    "title": "Senate Committee Hearing: Project MKUltra",
    "source": "National Archives"
   }
  ],
  "key_agencies": [
   "CIA",
   "Army"
  ],
  "sources_note": "Synthesized from publicly available FOIA releases and declassified archives",
  "redaction_level": "partial — subproject details remain classified",
  "how_to_dig_deeper": "File FOIA at cia.gov/readingroom or use /api/truth/foia-draft to generate a targeted request",
  "total_releases_found": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/truthpulse-foia-release-search-d4a85360/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)
