Financing Events

Recent 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", "count": 5, "items": [ { "id": "e1725e7b-9711-45f8-ab4d-d50f8989e85a", "event_type": "financing_event", "categories": ["other"], "financing_type": null, "financing_type_normalized": null, "amount": "$75 million", "amount_normalized": 75000000, "effective_date": null, "found_at": "2024-02-06T11:05:04+01:00", "source_urls": [ "https://www.channelnewsasia.com/business/robinhoods-venture-fund-invests-75-million-in-openai-6073721" ], "company": { "id": "62b85623-6793-55e1-a71b-4c3333599b2d", "name": "OpenAI", "domain": "openai.com", "ticker": null }, "investors": [ { "id": "6bdf9a17-c7c7-54a9-a039-7517ea5bf9a7", "name": "Robinhood", "domain": "robinhood.com", "ticker": "NASDAQ:HOOD" } ] } ] } }

Response fields

FieldTypeNotes
company_domainstringNormalized company domain that was queried.
typestringAlways financing_events.
countnumberNumber of financing event records returned in items.
items[].idstringUnique financing event ID.
items[].event_typestringEvent type, usually financing_event.
items[].categoriesstring[]Event categories, for example venture or other.
items[].financing_typestring | nullFinancing type when available, for example funding round.
items[].financing_type_normalizedstring | nullNormalized financing type when available.
items[].amountstring | nullReported financing amount.
items[].amount_normalizednumber | nullNumeric amount when the amount can be normalized.
items[].effective_datestring | nullEffective event date in YYYY-MM-DD format when available.
items[].found_atstringTimestamp when the event was found.
items[].source_urlsstring[]Source URLs for the financing event.
items[].company.idstringRelated company ID.
items[].company.namestringRelated company name.
items[].company.domainstringRelated company domain.
items[].company.tickerstring | nullRelated company ticker when available.
items[].investors[].idstringInvestor ID when investors are available.
items[].investors[].namestringInvestor name.
items[].investors[].domainstring | nullInvestor company domain when available.
items[].investors[].tickerstring | nullInvestor ticker when available.

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.

Error responses

All failed calls use the standard error envelope documented in Errors.

StatusCodeNotes
400validation_errorReturned when required query parameters are missing or invalid.
401unauthorizedReturned when X-Satellyte-API-Key is missing, invalid, or expired.
404not_foundReturned when Public API access is not enabled or the requested Public API resource is unavailable.
429rate_limit_exceededReturned when the API key exceeds its configured rate limit.
500service_errorReturned when the service cannot complete the request. Retry with backoff.