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/compensation?ticker=AAPL&limit=10"
const client = new SecApiClient({ apiKey: process.env.SECAPI_API_KEY }) const records = await client.compensation({ ticker: "AAPL", limit: 10 })
secapi compensation list --ticker AAPL --limit 10
curl -X POST \ -H "content-type: application/json" \ -H "x-api-key: $SECAPI_API_KEY" \ -d '{"ticker":"AAPL","limit":10}' \ "$SECAPI_BASE_URL/v1/compensation/compare"
const comparison = await client.compareCompensation({ ticker: "AAPL", limit: 10 })
secapi compensation compare --ticker AAPL --limit 10
Was this page helpful?