Artemise
Docs
Sign in
Getting started

Overview

What the Artemise API is and how to make your first call.

Artemise is sold as a platform: everything the app does — scored buying signals, grounded contact enrichment, personalized outreach drafts — is available over a REST API and the official TypeScript SDK.

Base URL

https://www.artemise.live/api/v1

All endpoints require an API key (see Authentication) and an active subscription — requests from unsubscribed workspaces are rejected with 403.

First call

curl https://www.artemise.live/api/v1/signals?limit=5 \
  -H "Authorization: Bearer ns_live_..."

Responses are JSON with snake_case fields. List endpoints return { object: "list", data: [...], has_more, next_cursor }.

What you can build

  • Pipe scored signals into your CRM the moment they're detected
  • Enrich inbound leads with a grounded decision-maker contact
  • Generate a personalized opener for every new signal, automatically
Authentication