# AgentFund SEC 13F Institutional Holdings

> AgentFund SEC 13F Institutional Holdings is a paid API for AI agents from x402.agentfund.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Retrieves SEC 13F institutional holdings filings for a given ticker or CIK, showing what large asset managers hold

## Facts

- Endpoint: POST https://x402.agentfund.net/x402/edgar_13f_holdings
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfund-sec-13f-institutional-holdings-f740cb35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B4x-HY5qzRibNlDsQS04e

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 agentfund-sec-13f-institutional-holdings-f740cb35 -d '<json body>'
```

Example prompt: Pull the latest SEC 13F institutional holdings for Berkshire Hathaway — give me the top 50 positions they reported.

## When to prefer this

Use this endpoint when you need structured, parsed 13F holdings data for a specific institutional filer identified by ticker or CIK, without having to parse raw EDGAR XML yourself. Prefer this over SEC Full-Text Filing Search when you want clean tabular holdings data rather than raw document text, and over general financial APIs when you need SEC-sourced regulatory disclosure data specifically.

## Known failure modes

- Unknown ticker or CIK returns empty or error response
- Limit outside 1-200 range may be rejected or clamped
- Fund has not filed a 13F (e.g. too small or foreign)
- EDGAR data may lag actual filing date by hours
- Payment failure if USDC balance is insufficient for $0.02 fee

## How this service works

SEC 13F Institutional Holdings

## Output

A list of institutional holdings reported in the fund's latest SEC 13F filing, including security names, ticker symbols, share counts, and market values, up to the specified limit (default 25, max 200).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max holdings to return (1-200, default 25)."
  },
  "ticker": {
   "type": "string",
   "description": "Filer ticker or CIK."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0001067983",
  "filer": "BERKSHIRE HATHAWAY INC",
  "holdings": [
   {
    "cusip": "02005N100",
    "issuer": "ALLY FINL INC",
    "shares": 19593812,
    "valueUsd": 900335661000
   }
  ],
  "totalPositions": 45
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfund-sec-13f-institutional-holdings-f740cb35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentfund.net](https://www.zero.xyz/host/x402.agentfund.net/llms.txt)
