Skip to main content
GET
/
v1
/
company-insights
List AI-extracted insights for a company
curl --request GET \
  --url https://api.stardex.ai/v1/company-insights \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "11111111-1111-1111-1111-111111111111",
      "organization_company_id": "22222222-2222-2222-2222-222222222222",
      "content": "May 2026 rev: $100M ARR",
      "category": "financials",
      "topic": "revenue",
      "observation_date": "2026-05-15",
      "status": "active",
      "is_user_edited": false,
      "source_activity_id": "33333333-3333-3333-3333-333333333333",
      "source_person_id": "44444444-4444-4444-4444-444444444444",
      "created_at": "2026-05-15T14:32:11.000Z",
      "updated_at": "2026-05-15T14:32:11.000Z"
    }
  ],
  "meta": {
    "total": 1,
    "offset": 0,
    "limit": 100
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.stardex.com/llms.txt

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

Authorizations

Authorization
string
header
required

Authenticate with a Bearer token: API key, OAuth token, or session token.

Query Parameters

offset
integer | null
default:0

Records to skip for pagination. Defaults to 0.

Required range: x >= 0
limit
integer
default:100

Max records per page (1–100). Defaults to 100.

Required range: 1 <= x <= 100
organization_company_id
string<uuid>
required

Required: company UUID whose insights to fetch.

status
enum<string>

Filter by status. Defaults to active only.

Available options:
active,
dismissed
category
enum<string>

Optional category filter.

Available options:
financials,
funding_ma,
team,
customers,
product,
tech,
gtm,
competitive,
culture,
other

Response

Insights returned

success
enum<boolean>
required
Available options:
true
data
object[]
required
meta
object
required