search
1 crread-onlyResolve a name to a tracked entity. Turn a fund or manager name (e.g. 'Berkshire', 'Citadel') into the SEC CIK or slug you pass to the fund.* tools — the entity-resolution entry point. Searches funds and managers by name or identifier.
Parameters#
| Parameter | Type | Description |
|---|---|---|
qreq | string | Search query |
Example call#
bash
curl -X POST https://arkolith.com/api/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"q": "berkshire"
}
}
}'REST mirror: GET /search, metered identically.
Example response#
json
{
"funds": [{ "cik": "1067983", "name": "BERKSHIRE HATHAWAY INC", "slug": "berkshire-hathaway-inc" }],
"managers": [{ "slug": "buffett", "name": "Warren Buffett" }]
}