Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.secapi.ai/llms.txt

Use this file to discover all available pages before exploring further.

Advanced Quickstarts

Use these once the first request works. Each quickstart is a real workflow, not a toy example.

Pick the next job

Compare 13F positions

Compare manager positions and quarter-over-quarter changes.

Compare executive compensation

Compare pay packages and compensation mix across time.

Search offerings activity

Pull new S-1 and 424B4 activity without staying in EDGAR all day.

Open billing or portal

Move from evaluation to a paid plan or inspect the billing portal.

Compare 13F positions

curl -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $OMNI_DATASTREAM_API_KEY" \
  https://api.secapi.ai/v1/owners/13f/compare \
  -d '{"cik":"0001067983","limit":25}'

Compare executive compensation

curl -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $OMNI_DATASTREAM_API_KEY" \
  https://api.secapi.ai/v1/compensation/compare \
  -d '{"ticker":"NVDA","limit":10}'

Search offerings activity

curl -H "x-api-key: $OMNI_DATASTREAM_API_KEY" \
  "https://api.secapi.ai/v1/offerings?forms=S-1,424B4&limit=10"

Create a billing or portal session

curl -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $OMNI_DATASTREAM_API_KEY" \
  https://api.secapi.ai/v1/billing/checkout \
  -d '{"planKey":"builder","successUrl":"https://secapi.ai/onboarding?checkout=success","cancelUrl":"https://secapi.ai/onboarding?checkout=cancel"}'