Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -H "x-api-key: $SECAPI_API_KEY" \ "$SECAPI_BASE_URL/v1/owners/13f?cik=0001067983&limit=10"
reportDate=YYYY-MM-DD
/v1/owners/13f?cik=0001067983&reportDate=2024-12-31
const client = new SecApiClient({ apiKey: process.env.SECAPI_API_KEY }) const report = await client.latest13F({ cik: "0001067983", limit: 10 })
secapi owners 13f --cik 0001067983 --limit 10
curl -X POST \ -H "content-type: application/json" \ -H "x-api-key: $SECAPI_API_KEY" \ -d '{"cik":"0001067983","limit":10}' \ "$SECAPI_BASE_URL/v1/owners/13f/compare"
const comparison = await client.compare13F({ cik: "0001067983", limit: 10 })
secapi owners compare-13f --cik 0001067983 --limit 10
curl -H "x-api-key: $SECAPI_API_KEY" \ "$SECAPI_BASE_URL/v1/owners/institutional/extract?cik=0001067983&year=2025&quarter=4&limit=25"
const extract = await client.institutionalOwnershipExtract({ cik: "0001067983", year: 2025, quarter: 4, limit: 25, })
secapi insiders list --ticker AAPL --limit 10
Was this page helpful?