News Events

Recent news events for one company domain.

Endpoint

GET /api/v1/signals/news-events

Authentication

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

Query parameters

FieldTypeRequiredNotes
company_domainstringYesCompany domain.
found_at_fromstringNoLower bound for event found date.
found_at_untilstringNoUpper bound for event found date.
pagenumberNoPage number. Minimum 1.
limitnumberNoPage size. Minimum 1, maximum 50.

cURL

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

Response (200)

Example response when news events exist:

{ "data": { "company_domain": "stripe.com", "type": "news_events", "count": 5, "items": [ { "id": "62d941af-f688-4833-8fb0-e11f8523eef6", "event_type": "news_event", "categories": ["integrates_with"], "effective_date": "2026-06-09", "found_at": "2026-06-09T00:00:00Z", "attributes": { "summary": "Stripe, Inc. integrated with Lloyds Bank on Jun 9th '26.", "confidence": 0.1854, "article_sentence": "Stripe's global payments infrastructure is now integrated into Lloyds' Business Account through a new suite of tools called Lloyds Accept.", "planning": false, "amount": null, "amount_normalized": null, "assets": null, "assets_tags": [], "award": null, "contact": null, "division": null, "event": null, "financing_type": null, "financing_type_normalized": null, "financing_type_tags": [], "headcount": null, "job_title": null, "job_title_tags": [], "location": null, "location_data": [], "product": null, "product_data": { "full_text": null, "name": null, "release_type": null, "release_version": null, "fuzzy_match": null }, "product_tags": [], "recognition": null, "vulnerability": null } } ] } }

Response fields

FieldTypeNotes
company_domainstringNormalized company domain that was queried.
typestringAlways news_events.
countnumberNumber of news event records returned in items.
items[].idstringUnique news event ID.
items[].event_typestringEvent type, usually news_event.
items[].categoriesstring[]Event categories, for example integrates_with, partners_with, launches, or acquires.
items[].effective_datestring | nullEffective event date in YYYY-MM-DD format when available.
items[].found_atstringTimestamp when the event was found.
items[].attributes.summarystring | nullShort generated summary of the event.
items[].attributes.confidencenumber | nullConfidence score for the event extraction.
items[].attributes.article_sentencestring | nullSource sentence or excerpt used for the event.
items[].attributes.planningboolean | nullWhether the event is planned or future-looking.
items[].attributes.amountstring | nullReported amount when relevant.
items[].attributes.amount_normalizednumber | nullNumeric amount when it can be normalized.
items[].attributes.assetsstring | nullAssets referenced by the event when relevant.
items[].attributes.assets_tagsstring[]Tags associated with detected assets.
items[].attributes.awardstring | nullAward name when the event is award-related.
items[].attributes.contactstring | nullContact name or value when available.
items[].attributes.divisionstring | nullDivision or business unit when available.
items[].attributes.eventstring | nullEvent name when available.
items[].attributes.financing_typestring | nullFinancing type when the news item includes financing context.
items[].attributes.financing_type_normalizedstring | nullNormalized financing type when available.
items[].attributes.financing_type_tagsstring[]Financing-related tags.
items[].attributes.headcountnumber | nullHeadcount value when detected.
items[].attributes.job_titlestring | nullJob title when the news item relates to hiring or appointments.
items[].attributes.job_title_tagsstring[]Tags associated with detected job titles.
items[].attributes.locationstring | nullHuman-readable location when available.
items[].attributes.location_dataobject[]Structured location objects when available.
items[].attributes.productstring | nullProduct name or product text when detected.
items[].attributes.product_dataobjectStructured product extraction data.
items[].attributes.product_tagsstring[]Tags associated with detected products.
items[].attributes.recognitionstring | nullRecognition text when the event is recognition-related.
items[].attributes.vulnerabilitystring | nullVulnerability name or identifier 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.