API reference
Signals
GET /v1/signals and GET /v1/signals/{id} — the scored signal feed.
List signals
GET /api/v1/signals
Query parameters:
limit— 1–100, default 25cursor— opaque; passnext_cursorfrom the previous pagemin_score— 0–100, filter by propensity scoretype— signal type filter (e.g.funding,hiring,creator)
curl "https://www.artemise.live/api/v1/signals?limit=2&min_score=70" \ -H "Authorization: Bearer ns_live_..."
Response:
{
"object": "list",
"data": [{
"object": "signal",
"id": "…",
"company": "Meridian Robotics",
"domain": "meridianrobotics.com",
"title": "Meridian raises $40M Series B",
"type": "funding",
"score": 87,
"reasoning": "Recent funding + hiring 3 AEs…",
"urgency": "high",
"contact_name": "Dana Reyes",
"contact_title": "VP Sales",
"source": "news",
"source_url": "https://…",
"status": "scored",
"captured_at": "2026-07-08T14:02:11Z"
}],
"has_more": true,
"next_cursor": "2026-07-08T14:02:11.000Z"
}Retrieve a signal
GET /api/v1/signals/{id}Returns a single signal object, or 404 when the id doesn't exist in your workspace (signals are strictly workspace-scoped).