Endpoint Playground
Test Crawlora's SEC Institutional Holdings (13F) API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/sec/institutional-holdings?cik=1067983" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cik | string | Yes | 1067983 | Institutional manager CIK |
| limit | integer | No | Max holdings, default 50, max 1000 |
{
"code": 200,
"msg": "OK",
"data": {
"cik": 1067983,
"manager_name": "BERKSHIRE HATHAWAY INC",
"accession_number": "0000950123-25-000001",
"total_value": 263095703570,
"total_holdings": 40,
"count": 1,
"holdings": [
{
"issuer": "AMERICAN EXPRESS CO",
"title_of_class": "COM",
"cusip": "025816109",
"value": 45087984892,
"shares": 149061045,
"share_type": "SH",
"investment_discretion": "DFND"
}
],
"source_url": "https://www.sec.gov/Archives/edgar/data/1067983/000095012325000001/"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the latest 13F-HR holdings for an institutional manager (by CIK): issuer, value, shares, sorted by value. Credential-free public SEC data.
{
"code": 200,
"msg": "OK",
"data": {
"cik": 1067983,
"manager_name": "BERKSHIRE HATHAWAY INC",
"accession_number": "0000950123-25-000001",
"total_value": 263095703570,
"total_holdings": 40,
"count": 1,
"holdings": [
{
"issuer": "AMERICAN EXPRESS CO",
"title_of_class": "COM",
"cusip": "025816109",
"value": 45087984892,
"shares": 149061045,
"share_type": "SH",
"investment_discretion": "DFND"
}
],
"source_url": "https://www.sec.gov/Archives/edgar/data/1067983/000095012325000001/"
}
}curl "https://api.crawlora.net/api/v1/sec/institutional-holdings?cik=<cik>" \
-H "x-api-key: $CRAWLORA_API_KEY"