Bulk Signals

All supported signals for a batch of company domains.

Tip: Use this to refresh many accounts in one call instead of looping individual /signals/* endpoints.

Endpoint

POST /api/v1/signals/bulk

Authentication

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

Request body

FieldTypeRequiredNotes
company_domainsstring[]YesOne or more domains.

cURL

curl -i -X POST "https://api-staging.satellyte.ai/api/v1/signals/bulk" \
  -H "X-Satellyte-API-Key: $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "company_domains": ["openai.com", "stripe.com", "notion.so"] }'

Response (200)

{
  "data": {
    "openai.com": [],
    "stripe.com": [],
    "notion.so": []
  }
}

The response is a map keyed by the requested domain. Each value is an array of signal items (same shape as /signals/hiring).