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
| Field | Type | Required | Notes |
|---|---|---|---|
company_domain | string | Yes | Company domain. |
first_seen_at_from | string | No | Lower bound for event first-seen date. |
first_seen_at_until | string | No | Upper bound for event first-seen date. |
page | number | No | Page number. Minimum 1. |
limit | number | No | Page 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.