13F Manager Holdings API: Get an institutional manager's reported holdings from its latest 13F-HR — SEC Form 13F
Get an institutional manager's reported holdings from its latest 13F-HR — issuer, as-filed CUSIP/FIGI, value and shares, largest first, accession-cited. The dataset gated at competitors' top tiers, priced per call.
$0.02 per call — pay with prepaid card credits (Authorization: Bearer ck_live_…, packs from $1) or with USDC over x402: call it, get 402 with the price, retry signed. Failed calls are never charged.
How do you call it?
GET /v1/sec/13f/manager — product id
sec_13f_manager. Over MCP, call answerpool_get with
product_id=sec_13f_manager.
curl "https://answerpool.io/v1/sec/13f/manager?cik=0001566307"
# with a prepaid credit key
curl -H "Authorization: Bearer ck_live_..." "https://answerpool.io/v1/sec/13f/manager?cik=0001566307"
Live call: https://answerpool.io/v1/sec/13f/manager?cik=0001566307 · JSON sample: /v1/samples/sec_13f_manager
What does the answer look like?
A representative response, the same static sample served at /v1/samples/sec_13f_manager.
as_of | 2026-08-31T17:00:00Z |
|---|---|
periods_held | 2025-12-31, 2025-09-30 |
cik | 0001566307 |
manager_name | Ramiah Investment Group |
period | 2025-12-31 |
accession | 0001566307-26-000071 |
total_value_usd | 14970455 |
positions_reported | 35 |
count | 1 |
refresh_after | 2026-09-17T11:15:00.000Z |
holdings
| issuer | class_title | cusip | figi | value_usd | shares | share_type | put_call | accession |
|---|---|---|---|---|---|---|---|---|
| COSTAR GROUP INC | COM | 22160N109 | — | 291134 | 7217 | SH | — | 0001566307-26-000071 |
The same sample as raw JSON
{
"as_of": "2026-08-31T17:00:00Z",
"periods_held": [
"2025-12-31",
"2025-09-30"
],
"cik": "0001566307",
"manager_name": "Ramiah Investment Group",
"period": "2025-12-31",
"accession": "0001566307-26-000071",
"total_value_usd": 14970455,
"positions_reported": 35,
"count": 1,
"holdings": [
{
"issuer": "COSTAR GROUP INC",
"class_title": "COM",
"cusip": "22160N109",
"figi": null,
"value_usd": 291134,
"shares": 7217,
"share_type": "SH",
"put_call": null,
"accession": "0001566307-26-000071"
}
],
"refresh_after": "2026-09-17T11:15:00.000Z"
}How fresh is it, and where does the data come from?
The fastest source behind this answer can change every 15 minutes, so every response carries a refresh_after timestamp — right now it would be 2026-09-17T11:15:00.000Z. Schedule the next call on that value rather than on a guess.
- SEC EDGAR (US federal public domain) — upstream:
https://efts.sec.gov
Method version 0.1.0 ·
serving cache 1 day ·
every response carries a result_id you can resolve at
/v1/provenance.
When should you use it?
Per-manager portfolio questions; search view resolves the CIK first.
What you skip building
- 13F XML/dataset parsing
- amendment handling
- ranking
When should you not use it?
Sub-quarterly freshness — 13F is quarterly with a filing lag.
Where else can you find this?
- Catalog entry (JSON, free)
- OpenAPI schema — input and output types, prices, the 402 flow
- llms.txt — every product in one plain-text document