# EDGAR 13F-HR Top Holdings Lookup

> EDGAR 13F-HR Top Holdings Lookup is a paid API for AI agents from agent402.tools, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns the top holdings from an institutional investment manager's most recent SEC 13F-HR filing, parsed from the informationtable.xml, sorted by USD value descending

## Facts

- Endpoint: GET https://agent402.tools/api/edgar-13f-holdings
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-13f-hr-top-holdings-lookup-08efaf19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NHoktEa2R9sPWEyilGyNA

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 edgar-13f-hr-top-holdings-lookup-08efaf19
```

Example prompt: Show me the top 20 holdings from Berkshire Hathaway's most recent 13F SEC filing — you can use their ticker BRK-B or CIK 1067983.

## When to prefer this

Use this endpoint when you need structured, parsed 13F-HR portfolio holdings data for a specific institutional manager identified by SEC CIK or public ticker. Prefer this over scraping SEC EDGAR directly because it handles XML parsing, sorting, and normalization automatically. Best for research on large institutional investors (>$100M AUM) where quarterly snapshot data is sufficient.

## Known failure modes

- CIK not found or manager has never filed a 13F — returns error or empty result
- Ticker not resolvable to a CIK (many funds are not publicly traded) — use CIK directly instead
- Manager has less than $100M AUM and is not required to file 13F — no data available
- SEC EDGAR upstream unavailable — service may time out or return stale data
- Limit parameter out of range (must be 1-500) — returns validation error

## How this service works

Top holdings from an institutional investment manager's most recent 13F-HR filing (managers >$100M AUM file quarterly). Parses the standard SEC informationtable.xml attached to the filing - returns issuer, CUSIP, shares, USD value, and voting authority for each position. Sorted by USD value, descending. Source: data.sec.gov + filing archive. ?cik=1067983 (Berkshire) or ?ticker=BRK-B

## Output

A list of the manager's top portfolio positions sorted by USD value (descending), each including issuer name, CUSIP, number of shares, USD market value, and voting authority classification. Defaults to top 50 holdings; configurable up to 500.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK of the institutional manager (e.g. 1067983 = Berkshire Hathaway)"
      },
      "limit": {
       "type": "number",
       "description": "Top N holdings by USD value, 1-500 (default 50)"
      },
      "ticker": {
       "type": "string",
       "description": "US ticker of a publicly-traded manager (alternative to cik; many funds aren't public)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0001067983",
  "holdings": [
   {
    "cusip": "037833100",
    "issuer": "APPLE INC",
    "shares": 905560000,
    "putCall": null,
    "valueRaw": 176558000000,
    "valueUsd": 176558000000,
    "votingNone": 0,
    "votingSole": 905560000,
    "titleOfClass": "COM",
    "votingShared": 0,
    "investmentDiscretion": "DFND",
    "sharesOrPrincipalAmountType": "SH"
   }
  ],
  "returned": 10,
  "filedDate": "2025-11-14",
  "reportDate": "2025-09-30",
  "managerName": "Berkshire Hathaway Inc",
  "totalHoldings": 38,
  "totalValueUsd": 312456000000,
  "accessionNumber": "0000950123-25-001234",
  "informationTableUrl": "https://www.sec.gov/Archives/edgar/data/1067983/000095012325001234/informationtable.xml"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-13f-hr-top-holdings-lookup-08efaf19/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
