Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.thehog.ai/llms.txt

Use this file to discover all available pages before exploring further.

Send a POST request to /api/signals to receive a feed of classified buying signals for the accounts associated with your project. The Hog scans LinkedIn posts, Reddit threads, and company news within your specified time window, then classifies each event by type and assigns a confidence score so you can prioritize outreach to the accounts showing the strongest intent.

Request

POST https://api.thehog.ai/api/signals
projectId
string
Scope the signal feed to a specific project. You can omit this if your API key is scoped to a single project.
sinceDays
number
default:"30"
Number of days of activity to scan for signals. Minimum 1, maximum 90. Defaults to 30.
limit
number
default:"50"
Maximum number of signal events to return. Minimum 1, maximum 200. Defaults to 50.

Response

The endpoint returns 200 OK synchronously with an array of signal objects in data.
data
object[]
required
Array of classified signal events, sorted by recency.
meta
object
required
Request metadata.

Examples

curl --request POST \
  --url https://api.thehog.ai/api/signals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "projectId": "proj_01HXYZ",
    "sinceDays": 14,
    "limit": 10
  }'