Skip to main content

Documentation Index

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

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

from_inbox
string
required
UUID of the inbox to send from (get via GET /v1/email/inboxes)
to
string
required
Recipient email address
subject
string
required
Email subject line
body
string
required
Email body — plain text or HTML. If the body contains HTML tags, it will be sent as HTML email; otherwise plain text.
curl -X POST https://api.usenaive.ai/v1/email/send \
  -H "Authorization: Bearer nv_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "from_inbox": "inbox-uuid",
    "to": "prospect@company.com",
    "subject": "Research findings",
    "body": "Here are the results..."
  }'
{
  "id": "msg-uuid",
  "status": "sent",
  "from_inbox": "inbox-uuid",
  "from_address": "research@acme-corp.ai",
  "to": "prospect@company.com",
  "credits_used": 1,
  "credits_remaining": 1499
}
Cost: 1 credit (charged immediately on success)