# AlphaPulse SEC EDGAR 13F Hedge Fund Holdings Checker

> AlphaPulse SEC EDGAR 13F Hedge Fund Holdings Checker is a paid API for AI agents from alphapulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Fetches live SEC EDGAR 13F filings for a named hedge fund and returns verbatim top long US-equity positions, total book value, concentration metrics, and filing dates with honest caveats about what 13F cannot reveal.

## Facts

- Endpoint: GET https://alphapulse.theaslangroupllc.com/api/alpha/fund-check
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-sec-edgar-13f-hedge-fund-holdings-checker-6741be6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7wv9ap7AcrC-hcTesbq8K

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 alphapulse-sec-edgar-13f-hedge-fund-holdings-checker-6741be6b
```

Example prompt: Pull the latest SEC EDGAR 13F filing for Pershing Square Capital Management — I want to see their top long US-equity positions verbatim, total book value, and how concentrated the portfolio is.

## When to prefer this

Use this endpoint when you need official, deterministic, verifiable US equity holdings data sourced directly from SEC EDGAR 13F filings for a named institutional investment manager. Prefer this over third-party data aggregators when regulatory accuracy and source fidelity matter, or when you need to cite an official filing. Best for allocator due diligence, compliance checks, and portfolio transparency research on US-listed long equity positions.

## Known failure modes

- Fund name not found in EDGAR — returns no matching filer error
- Fund has not filed a 13F (e.g. below $100M threshold) — returns filing not found
- EDGAR upstream unavailable — returns fetch/timeout error
- Ambiguous fund name matching multiple filers — may return wrong entity or disambiguation prompt
- Stale data if EDGAR updates are delayed

## How this service works

Hedge fund holdings check grounded in official SEC EDGAR 13F filings, fetched live: top long US-equity positions VERBATIM (issuer, value, shares), total book value, deterministic concentration figure, filing dates, and an honest read of what the book shape suggests — plus what 13F cannot tell you (performance, shorts, non-US). Name in, official filing out. For allocator and trading agents.

## Output

Returns verbatim top long US-equity positions (issuer name, market value, share count) from the fund's most recent 13F filing, plus total portfolio book value, a deterministic concentration figure, filing and period-of-report dates, and an explicit note on what 13F data cannot reveal (performance, short positions, non-US holdings).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "fund"
 ],
 "properties": {
  "cik": {
   "type": "string",
   "description": "optional — SEC CIK if known (skips name matching)"
  },
  "top": {
   "type": "string",
   "description": "holdings rows to return, 5-25 (default 15)"
  },
  "fund": {
   "type": "string",
   "description": "manager/fund name to look up in EDGAR"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coverage": "13F shows delayed long US equity positions only — not performance, shorts, or non-US holdings.",
  "fund_name": "BRIDGEWATER ASSOCIATES, LP",
  "top_holdings": [
   {
    "issuer": "SPDR S&P 500 ETF",
    "shares": 3500000,
    "value_usd": 2100000000
   }
  ],
  "portfolio_read": "Broad, index-heavy long book with...",
  "total_value_usd": 21500000000,
  "period_of_report": "2026-03-31",
  "top10_concentration_pct": 34.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-sec-edgar-13f-hedge-fund-holdings-checker-6741be6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphapulse.theaslangroupllc.com](https://www.zero.xyz/host/alphapulse.theaslangroupllc.com/llms.txt)
