Buying Committee

Return a buying committee tagged by role: decision maker, influencer, budget owner.

Endpoint

POST /api/v1/contacts/buying-committee

Authentication

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

Request body

FieldTypeRequiredNotes
company_domainstringYesCompany domain.
rolesstring[]NoDefaults to ["decision_maker", "influencer", "budget_owner"].

cURL

curl -i -X POST "https://api-staging.satellyte.ai/api/v1/contacts/buying-committee" \
  -H "X-Satellyte-API-Key: $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "company_domain": "openai.com",
    "roles": ["decision_maker", "influencer", "budget_owner"]
  }'

Response (200)

{
  "data": [
    {
      "id": "lead_123",
      "name": "Jane Doe",
      "title": "Head of Sales",
      "role": "decision_maker",
      "linkedin_url": "https://www.linkedin.com/in/janedoe/",
      "outreach_angle": "Mention recent hiring/funding signal."
    }
  ]
}

Same item shape as /contacts/find (minus email, location, score when not available). On a miss for the target company, the array is empty.