Artemise
Docs
Sign in
API reference

Drafts

POST /v1/drafts — generate a personalized outreach draft from a signal.

Create a draft

POST /api/v1/drafts

Writes a personalized opener anchored to one of your signals. Spends from your plan's daily AI budget (402 when exhausted; resets each UTC day).

Body:

  • signal_id — required; a signal owned by your workspace
  • contact — required; { "name": "...", "title": "..." } (title optional)
  • sender_name — optional; first name used in the sign-off
curl https://www.artemise.live/api/v1/drafts \
  -H "Authorization: Bearer ns_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "signal_id": "<id from /v1/signals>",
    "contact": { "name": "Jane Doe", "title": "VP of Sales" },
    "sender_name": "Shaked"
  }'

Response:

{
  "object": "draft",
  "signal_id": "…",
  "subject": "that Series B changes your Q4 math",
  "body": "Hi Jane — saw the raise announcement…",
  "rationale": "Anchored to the funding trigger…"
}
Contact enrichmentSDK auth (device flow)