Funding Signals
Recent funding signals for one company.
Endpoint
GET /api/v1/signals/fundingAuthentication
All requests require the X-Satellyte-API-Key header. See Quickstart.
Query parameters
| Field | Type | Required | Notes |
|---|---|---|---|
company_domain | string | Yes | Company domain. |
cURL
curl -i "https://api-staging.satellyte.ai/api/v1/signals/funding?company_domain=openai.com" \
-H "X-Satellyte-API-Key: $API_KEY"Response (200)
Example response when funding signals exist:
{
"data": [
{
"id": "lead_123:0",
"type": "funding_announcement",
"company": "OpenAI",
"company_domain": "openai.com",
"lead_id": "lead_123",
"lead_name": "Alex Morgan",
"lead_title": "Head of Partnerships",
"linkedin_url": "https://www.linkedin.com/in/alex-morgan",
"title": "OpenAI announces a new funding round",
"detail": "Recent funding announced",
"source_url": "https://example.com/funding-announcement",
"detected_at": "2026-05-01T00:00:00.000Z",
"score": 25
}
]
}Response fields
| Field | Type | Notes |
|---|---|---|
id | string | Stable signal item ID. |
type | string | Always "funding_announcement" for this endpoint. |
company | string | null | Company name associated with the signal. |
company_domain | string | null | Normalized company domain when available. |
lead_id | string | Lead ID associated with the signal. |
lead_name | string | Lead name associated with the signal. |
lead_title | string | null | Lead title when available. |
linkedin_url | string | null | Lead LinkedIn profile URL when available. |
title | string | null | Headline or title of the funding signal. |
detail | string | null | Free-form signal detail or provenance text. |
source_url | string | null | Source URL for the funding signal when available. |
detected_at | string | null | Timestamp when the signal was detected. |
score | number | null | Signal or lead score when available. |
Empty array if no signals are known.
Error responses
All failed calls use the standard error envelope documented in Errors.
| Status | Code | Notes |
|---|---|---|
400 | validation_error | Returned when required query parameters are missing or invalid. |
401 | unauthorized | Returned when X-Satellyte-API-Key is missing, invalid, or expired. |
404 | not_found | Returned when Public API access is not enabled or the requested Public API resource is unavailable. |
429 | rate_limit_exceeded | Returned when the API key exceeds its configured rate limit. |
500 | service_error | Returned when the service cannot complete the request. Retry with backoff. |