curl -H "x-api-key: $OMNI_DATASTREAM_API_KEY" \
"$OMNI_DATASTREAM_BASE_URL/v1/compensation?ticker=AAPL&limit=10"
const client = new OmniDatastreamClient({ apiKey: process.env.OMNI_DATASTREAM_API_KEY })
const records = await client.compensation({ ticker: "AAPL", limit: 10 })
omni-sec compensation list --ticker AAPL --limit 10
curl -X POST \
-H "content-type: application/json" \
-H "x-api-key: $OMNI_DATASTREAM_API_KEY" \
-d '{"ticker":"AAPL","limit":10}' \
"$OMNI_DATASTREAM_BASE_URL/v1/compensation/compare"
const comparison = await client.compareCompensation({ ticker: "AAPL", limit: 10 })
omni-sec compensation compare --ticker AAPL --limit 10