GET
/funds
1 crPage through every tracked institutional manager (hedge funds, asset managers) that files SEC 13F reports, ranked by book size (AUM). Each row carries the SEC CIK you pass to the other fund endpoints.
Request#
bash
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://arkolith.com/api/v1/funds?limit=10"Parameters#
| Parameter | In | Type | Description |
|---|---|---|---|
page | query | integer | Page numberdefault: 1 |
limit | query | integer | Results per page (max 100)default: 50 |
Example response#
json
{
"data": [
{
"cik": "1067983",
"name": "BERKSHIRE HATHAWAY INC",
"slug": "berkshire-hathaway-inc",
"aum_cents": "25800000000000",
"latest_quarter": "2026-03-31",
"holdings_count": 42,
"manager": "Warren Buffett"
}
],
"pagination": { "page": 1, "limit": 50, "total": 30, "pages": 1 }
}MCP equivalent: fund.list. The full agent surface lives on the MCP server.