latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Signals

Get a signal

Returns a single signal with its associated contact, company, and the authenticated user's monitors.

get/api/signals/{id}

Response

Ok

idinteger
typestring
categorystring
detected_atstring
expires_atstring

Example response

{
  "id": 1,
  "type": "keyword_mention",
  "category": "contact",
  "payload": {
    "matched_keyword": "hiring",
    "snippet": "We are hiring a new VP of Sales..."
  },
  "detected_at": "2026-03-01T12:00:00+00:00",
  "expires_at": "2026-06-01T12:00:00+00:00",
  "contact": {
    "id": 1,
    "name": "John Doe",
    "job_title": "CEO",
    "linkedin_url": "https://www.linkedin.com/in/johndoe"
  },
  "company": {
    "id": 1,
    "name": "Acme Corp",
    "domain": "acme.com",
    "industry": "Technology, Information and Internet",
    "employee_count_range": "51-200",
    "country": "US"
  },
  "monitors": [
    {
      "id": 1,
      "name": "Hiring monitor",
      "keywords": [
        "hiring"
      ],
      "enrichment_level": "email"
    }
  ]
}