# TruthPulse FOIA Release Search

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

Searches FOIA releases and public records from US, UK, Canada, Australia, and other countries on any topic for researchers and OSINT agents

## Facts

- Endpoint: GET https://truthpulse.theaslangroupllc.com/api/truth/foia-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/truthpulse-foia-release-search-755ca8f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QTWMT3vmnNaAmBR2YxUkO

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-755ca8f0
```

Example prompt: Search TruthPulse for FOIA releases about CIA surveillance programs — look across the US, UK, and Canada and bring back whatever declassified documents and public records you can find on that topic.

## When to prefer this

Use this endpoint when you need to search across multiple countries' FOIA and public records releases simultaneously, especially for research, journalism, or OSINT tasks. Prefer this over single-country FOIA portals when cross-jurisdictional coverage is needed, or when you want a unified search interface rather than querying each national archive separately. Distinct from the sibling declassified archive endpoint which focuses on intelligence agency archives (CIA, NSA, FBI Vault).

## Known failure modes

- No matching documents found for the given query topic
- Unsupported jurisdiction requested
- Query string too vague or ambiguous returns low-relevance results
- Rate limit or payment failure returns 402 error
- Service unavailable or timeout for broad cross-jurisdiction searches

## How this service works

FOIA release search for researcher and OSINT agents. Finds declassified documents and public records on any topic across US, UK, Canada, Australia, and more.

## Output

Returns a list of matching FOIA releases and public records including document titles, releasing agency, country of origin, release dates, document summaries, and links or references to the actual records across US, UK, Canada, Australia, and other jurisdictions.

## 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-755ca8f0/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)
