Financing Events

PredictLeads-backed financing events for one company domain.

Endpoint

GET /api/v1/signals/financing-events

Authentication

All requests require the X-Satellyte-API-Key header. See Quickstart.

Query parameters

FieldTypeRequiredNotes
company_domainstringYesCompany domain.
first_seen_at_fromstringNoLower bound for event first-seen date.
first_seen_at_untilstringNoUpper bound for event first-seen date.
pagenumberNoPage number. Minimum 1.
limitnumberNoPage size. Minimum 1, maximum 50.

cURL

curl -i "https://api-staging.satellyte.ai/api/v1/signals/financing-events?company_domain=openai.com&limit=10" \
  -H "X-Satellyte-API-Key: $API_KEY"

Response (200)

{
  "data": {
    "company_domain": "openai.com",
    "type": "financing_events",
    "source": "satellyte",
    "count": 0,
    "items": []
  }
}

When events exist, each item includes the event id, financing metadata such as financing_type, amount, amount_normalized, effective_date, found_at, source_urls, plus related company and investors when available.